InteractiveObject.hx 548 B

123456789101112131415
  1. package flash.display;
  2. extern class InteractiveObject extends DisplayObject {
  3. var accessibilityImplementation : flash.accessibility.AccessibilityImplementation;
  4. var contextMenu : flash.ui.ContextMenu;
  5. var doubleClickEnabled : Bool;
  6. var focusRect : Dynamic;
  7. var mouseEnabled : Bool;
  8. @:require(flash11) var needsSoftKeyboard : Bool;
  9. @:require(flash11) var softKeyboardInputAreaOfInterest : flash.geom.Rectangle;
  10. var tabEnabled : Bool;
  11. var tabIndex : Int;
  12. function new() : Void;
  13. @:require(flash11) function requestSoftKeyboard() : Bool;
  14. }