Looping problem

Here it is… I have an animation that is divided into 2 scenes. What I need it to do is run throught the scenes 3 times and stop on the last frame of the final scene.

Any help would be greatly appreciated

on the last frame of the last scene put:

if (loopCount++ == 2) stop();
else gotoAndPlay(1);

:slight_smile:

That’s it!! Thank you very much. I really appreciate it.