This is about how to make a frame which have a Movie Clip go to play next Movie Clip frame. I called second frame is “bike”.
It is different between AS2 and AS3.
First of all. Create a new AS layer and write stop(); in frist frame. This step is same in AS2 and AS3.
second. Make a AS in the last frame of first Movie Clip.
In CS2, the code should be _level0.gotoAndPlay(“bike”);
In CS3, the code should be MovieClip(root).gotoAndPlay(“bike”);
Advertisement