PDA

View Full Version : looping problem



jpb_black
June 17th, 2003, 04:26 PM
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

senocular
June 17th, 2003, 05:30 PM
on the last frame of the last scene put:


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

:)

jpb_black
June 17th, 2003, 05:38 PM
That's it!! Thank you very much. I really appreciate it.