1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
package flash.events;
@:require(flash10_1) extern class GestureEvent extends Event {
var altKey : Bool;
var ctrlKey : Bool;
var localX : Float;
var localY : Float;
var phase : String;
var shiftKey : Bool;
var stageX(default,null) : Float;
var stageY(default,null) : Float;
function new(type : String, bubbles : Bool = true, cancelable : Bool = false, ?phase : String, localX : Float = 0, localY : Float = 0, ctrlKey : Bool = false, altKey : Bool = false, shiftKey : Bool = false) : Void;
function updateAfterEvent() : Void;
static var GESTURE_TWO_FINGER_TAP : String;
}
|