Question
Animate, Mobile Gesture "Pan Event" Problem
I have used the code snippet in Animate to create a "Pan Event" in my app.
The code is:
Multitouch.inputMode = MultitouchInputMode.GESTURE;
movieClip_2.addEventListener(TransformGestureEvent.GESTURE_PAN, fl_PanHandler_7);
function fl_PanHandler_7(event:TransformGestureEvent):void
{
event.currentTarget.x += event.offsetX;
event.currentTarget.y += event.offsetY;
}
When running a debug movie on it I can't do any panning
I also have "Pinch to Zoom Event" codesnippet on the same fill....that one works fine in simulator.
What to do?
