The easiest way to pause a movieclip inside your flash without affecting the rest of the stage is written few rows below.
You just have to enter your movieclip (double click it), create a new layer called “actions” or whatever you like to name it and paste the code on the frame you want your movieclip to pause.
stop();
setTimeout(this,”play”,2000)
You have the option to control how long the movieclip should pause simply by changing the value “2000″ (in ms = 2s) to your desired value.
No related posts.
Just what I’ve been looking for, thanx!