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!!