don't really understand your question..if ya wanted a movie to stop at a certain frame then just put a stop action in the frame that you want it to stop at..if your targeting the clip from something else it would still be the same..all you would do is target the clip with telltarget, the with command, or the _root. syntax..either way once you have targeted your instance and begun to play it all you would have to do is place a stop action in the frame where ya want it to stop..
...But as Carl said, if you don't have a stop action, the movie won't stop, it'll just keep on playing past frame 15!
This might be used in a case like this:
On first keyframe...
if (_root._currentFrame<20) {
_root._visible = false;
}
On key frame 20...
if (_root._currentFrame>19) {
_root._visible = true;
}
This way the movie will start not visible, and become visible on frame 20. But what's the point you don't need the conditional statement to achieve this!
You could control other mcs in the same manner with:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.