Hello,

I'm removing children of movieclip with:

var count:int = myroot.numChildren;

for (var i:int=0; i<count; i++) {
      
     myroot.removeChildAt(0);
}

How to set children to null?
All children have listeners, do I need to remove(set to null) them as well?

It seems memory managing process is not very well documented..

Regards,
K



      
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to