nulling a movieclip made from a class - does it make it trashable?
Hi
I instantiate a class that makes some movieclips within it, and from the class that instatiated it, I add some event listeners to the moveiclips...
(simplified)
var myClip:MCClass = new MCClass();
myClip.mc1.addEventListener(MouseEvent.CLICK, doSomething);
If at some stage I state myClip = null, does that make the event listeners eligible to be garbage collected, or do I need to removeEventListener them prior to myClip = null?
Cheers!
