Hi, I used actionscript to duplicate a movie clip so that i could get a trail to follow it. The trail works, pretty much, but the problem i am having is getting rid of the movie clip. After the frame that it is in it moves to the top left corner of the movie, and stays there. Even when there is blank frames in the movie. How do i get rid of this? is it an actioncript command?
If it’s the origional movie clip sitting there, then it should be illiminated when any layer containing it ends.
the duplicateMovieCip(); and attachMovie(); methods create objects attached to a timeline and must be deleted with either
http://www.macromedia.com/support/flash/action_scripts/objects/removemovieclip.html
or
http://www.macromedia.com/support/flash/action_scripts/objects/movieclipremovemovieclip.html
Either method will work to remove the clips, but you’ll have to get rid of them by name.