|
-
removing selected movieclips
Hi there!!
I have a button that clears the stage(removes all mcs) using this code:
on (press)
{
for (name in _root)
{
if (typeof (_root[name]) == "movieclip")
{
removeMovieClip(_root[name]);
}
}
}
However I want to keep all the instances of ONE of my movieClips on the stage. anyone has any idea how to do this?
Cheers!!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|