Reputation: 11
I added a movie clip at certain frame but i found a problem that after test the scene,it cannot proceed to the next frame after the movie clip ends. How to do with the actionscript besides putting stop() and gotoAndPlay (FRAME NUMBER) to the movie clip?
Upvotes: 0
Views: 3281
Reputation: 10510
You can put a stop on the main timeline so it plays your movieclip all the way, then at the end of that movieclip tell it go to the next frame.
parent.nextFrame();
Upvotes: 1