When I work on my Air Project, I used stop(); to stay in a frame(which is my menu), I built the .air for testing purposes and the frames keep looping, as in, it plays all the frames, and it won't stop as it's instructed to.

Is there anything wrong? I'm building my Application in Flash CS5, not Flex. Thanks for helping!

link|improve this question
3  
are you using stage.stop() or this.stop() or myControl.stop() ??? please share some code – Adrian Pirvulescu Dec 30 '10 at 9:52
confirmed - stop() does not seem to work on Flash CS5 Publish to Air ... – ina Mar 31 '11 at 11:37
Where is the code? In the timeline, a class? We'll need specifics to help.. – fenomas Mar 31 '11 at 16:47
1  
Any luck with gotoAndStop? – Matt Apr 5 '11 at 1:52
feedback

1 Answer

I've had this issue before when I tried to stop a MovieClip which contained other MovieClips. Is this possibly the case with you?

If it is, be sure to call stop on each of the MovieClips internally.

EDIT: You also need to check your syntax. I had one MovieClip that wouldn't stop, and I found a typo in the gotoAndStop call for it inside an event handler that hadn't even fired.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.