You want to dynamically call a certain movieclip before a movieclip is run.
Problem: You want to dynamically call a certain movieclip each time before a movieclip on the timeline is run. Solution:This can be achieved using attachMovie() and removeMovieclip() methods. Lets see how this can be done. Open a new document in Flash. Create a circle(or any shape you want) and convert it to a moviclip. Craete a small tweening animation of 25 frames.Now we have got a nice looking animation.In the last frame copy and paste this code _root.gotoAndPlay(2) this.removeMovieClip() stop(); Then...
