Initial support for AIR

This commit is contained in:
Joshua Granick
2017-08-24 12:50:13 -07:00
parent f2a8092834
commit 9991e99fee
186 changed files with 2590 additions and 68 deletions

View File

@@ -0,0 +1,13 @@
package flash.events;
extern class ScreenMouseEvent extends MouseEvent {
var screenX(default,never) : Float;
var screenY(default,never) : Float;
function new(type : String, bubbles : Bool=false, cancelable : Bool=false, screenX : Float, screenY : Float, ctrlKey : Bool, altKey : Bool=false, shiftKey : Bool=false, buttonDown : Bool=false, commandKey : Bool=false, controlKey : Bool=false) : Void;
static var CLICK : String;
static var MOUSE_DOWN : String;
static var MOUSE_UP : String;
static var RIGHT_CLICK : String;
static var RIGHT_MOUSE_DOWN : String;
static var RIGHT_MOUSE_UP : String;
}