Hello,

Is it possible to create an action withing a movie clip that, when it reaches it's final frame will play another the next frame withing the scene, OUTSIDE the movie clip?

I mean that instead of making one long frameset file, or using the LoadMovie command, I want to place several movie clips on my scene on different frames (example: MC1 on frame 1, MC2 on frame 2 etc...) and I want to create a code withing each MC (for example each will have animation of 25 frames) that when it reaches it's final (25th) frame it will stop and go to the second frame on the scene which contains MC 2. I want it to be without user interaction.

I've tried to use the string:

onClipEvent (enterFrame) {
gotoAndStop ("scene1", "instanceframe");
}

OR

onClipEvent (enterFrame) {
gotoAndStop (_root.2);
}

Something like that. But it doesn't work.... any ideas?

Regards,


Availor