ContextMenuEvent.hx 428 B

123456789
  1. package flash.events;
  2. extern class ContextMenuEvent extends Event {
  3. var contextMenuOwner : flash.display.InteractiveObject;
  4. var mouseTarget : flash.display.InteractiveObject;
  5. function new(type : String, ?bubbles : Bool, ?cancelable : Bool, ?mouseTarget : flash.display.InteractiveObject, ?contextMenuOwner : flash.display.InteractiveObject) : Void;
  6. static var MENU_ITEM_SELECT : String;
  7. static var MENU_SELECT : String;
  8. }