how can i remove a clip… but if the movie clip already finish.???
when MC is done i want to be removed !thanks.
Well if your MC is loaded through attachMovieClip or createMovieClip then you can use removeMovieClip.
In your case, the MC is already on stage so I don’t think removeMovieClip would work.
What I would do is on the last frame of that movieclip, place this script:
_root.one.mouth._visible=false;
That will make your mouth MC disappear after it’s done playing.