Awesome! I also found this to work:
var loopCount:Number = 2;
this.counter = (this.counter == undefined) ? 1 : this.counter + 1;
if (this.counter >= loopCount) stop();
Main Topics
Browse All TopicsI need to have my flash cs4 movie run twice through and stop. Below is my current code in the last frame of my movie, and I don't know how to do this in AS3
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: TanLiHaoPosted on 2009-08-06 at 21:37:09ID: 25040023
I have a very simple way for you.
However, you cannot go back to frame 1, but frame 2.
So this is what you do, in frame 1 you add a new blank keyframe.
add the actions var playnum:int = 0;
In frame 2, your original frame 1, place the code playnum++ together with all your other code.
Then in your last frame put this code
if (playnum < 2) {
gotoAndPlay(2);
}
You can always use the document class to define var playnum:int = 0 first then you need not use the go back to frame 2, but this is a simpler solution and I believe it's good enough.