Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

remove movie clip 1

Status
Not open for further replies.

Adam14

Technical User
Nov 8, 2003
193
CA
I'm trying to remove a clip I've attached. I used this:

_root.MTMC.attachMovie("MenuBall", "MB", 1);

to attach it, and I'm trying to remove it with :

removeMovieClip("MB");

or also:

_root.MB.removeMovieClip();

and neither seem to work....is my syntax off?

Thanks,
Adam


 
How about...

removeMovieClip("_root.MTMC.MB");

Or...

_root.MTMC.MB.removeMovieClip();

 
Works like a charm...man, I shoulda got that one!

Thanks, Old!!

Adam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top