0
votes

I am having 5 scenes of animation. I want to combine those scenes to make one file. Each file contains one scene(i.e. one movie clip which contains animation of that scene). In order to prepare one file of all the scenes I have copied all the frames in one file one by one. And used

gotoAndPlay(2);

command for each frame. But after playing third frame it is again playing the second frame and not the forth one. What changes should I make in the code?

1

1 Answers

0
votes

I believe you have put gotoAndPlay(2); on each frame, which obviously means to play 2nd frame even after the 3rd one.

Use nextFrame() instead.

You could have used nextScene() as well & not altered the scenes at all.