user2196021
user2196021

Reputation: 11

AS3 to proceed to the next frame right after an inserted movie clip in flash cs6

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

Answers (1)

Adam Harte
Adam Harte

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

Related Questions