I'm totally stuck on coding a swiping gesture to enter previous and next frames; the code below works fine when first entering the frame but after returning to this frame, the swipe gestures no longer work... Thanks for your help, Ive searched the site but can't seem to find a solution.
Multitouch.inputMode = MultitouchInputMode.GESTURE;
stage.addEventListener (TransformGestureEvent.GESTURE_SWIPE, swipe1);
function swipe1(event:TransformGestureEvent):void
{
if(event.offsetX == 1)
{
gotoAndPlay(1);
}
else if(event.offsetX == -1)
{
gotoAndPlay(3);
}
}