FullScreenEvent.hx 429 B

123456789
  1. package flash.events;
  2. extern class FullScreenEvent extends ActivityEvent {
  3. var fullScreen(default,null) : Bool;
  4. @:require(flash11_3) var interactive(default,null) : Bool;
  5. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, fullScreen : Bool = false, interactive : Bool = false) : Void;
  6. static var FULL_SCREEN : String;
  7. @:require(flash11_3) static var FULL_SCREEN_INTERACTIVE_ACCEPTED : String;
  8. }