Is there a way to unload multiple movie clips without having to specifically reference each one? I have a load of parent movie clips which all have child movie clips attached. I want to unload all these child movie clips when I press a reset button. Is there an easy way to do this.
I don't want to have to use specific paths as the name of the child will vary each time the movie is played. So:
this.parentclip_mc.child1_mc.unloadMovie();
is no good because another time the path might need to be:
this.parentclip_mc.child2_mc.unloadMovie();
I basically need a way to unload all movie clips attached to 'parentclip_mc'. Can anyone help?