ContextMenuEvent.hx 1.1 KB

12345678910111213141516
  1. package flash.events;
  2. extern class ContextMenuEvent extends Event {
  3. @:flash.property var contextMenuOwner(get,set) : flash.display.InteractiveObject;
  4. @:flash.property @:require(flash10) var isMouseTargetInaccessible(get,set) : Bool;
  5. @:flash.property var mouseTarget(get,set) : flash.display.InteractiveObject;
  6. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?mouseTarget : flash.display.InteractiveObject, ?contextMenuOwner : flash.display.InteractiveObject) : Void;
  7. private function get_contextMenuOwner() : flash.display.InteractiveObject;
  8. private function get_isMouseTargetInaccessible() : Bool;
  9. private function get_mouseTarget() : flash.display.InteractiveObject;
  10. private function set_contextMenuOwner(value : flash.display.InteractiveObject) : flash.display.InteractiveObject;
  11. private function set_isMouseTargetInaccessible(value : Bool) : Bool;
  12. private function set_mouseTarget(value : flash.display.InteractiveObject) : flash.display.InteractiveObject;
  13. static final MENU_ITEM_SELECT : String;
  14. static final MENU_SELECT : String;
  15. }