I have 7 movie clips that I want to bring to 7 frames of one movieClip where
they play one after another.
What script can I put on frame to go next frame when movieclip is finished?
I can?t say ?go next frame? at the end of each of 7 movieclips because I also
use it with buttons.
Randy1969 - 30 Jun 2005 23:36 GMT
On the clip the embed clip resides on put a stop();
On the movieclip you would like to detect when it has finished place:
onClipEvent(enterFrame)
{
if (this._currentframe==this._totalframes) _parent.play();
}