How to make it go and play a frame on main timeline when movieclip finishes without using a button?

67 Views Asked by At

If I have a movieclip already in a frame how do I make it go and play another frame on the main timeline once the movieclip is finished without using a button

1

There are 1 best solutions below

0
Rusty Parks On

On the last from of your movieclip, add a new keyframe and the following actionscript.

_root.gotoAndPlay(25);

or

root.gotoAndPlay("whateverFrameLabelName");