actionscript 3 - Using gesture and mouse events together on AS3 -
i'm tring develop app on as3 android. when set multitouch gesture with
multitouch.inputmode = multitouchinputmode.gesture;
command, cant use mouse event 1 finger, altough device support touch event types.
trace("gesture support: "+ multitouch.supportsgestureevents + " touch support: " + multitouch.supportstouchevents); gesture support: true touch support: true
according as3 class reference,i must handle touch events mouse event, in multitouchinputmode.none. cant use click events of buttons. there parameter set using mouse events on gesture mode?
in our app used multitouchinputmode.touch_point , got mouse events normally, , implement gestures ourselves.
Comments
Post a Comment