Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
}
}
share|improve this question
Not sure how to include an enterFrame parameter... – user1515452 Jan 27 at 19:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.