ContextMenuEvent.hx 500 B

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