If you're looking outside of your components for data, DataProvider references (especially bound) could also keep your objects from hitting the GC. I think. :)
-TH --- In [email protected], "David Ham" <[EMAIL PROTECTED]> wrote: > > > GC only happens on new allocations, so you can never count on things > > being cleaned up immediately, just eventually, and you have to code for > > that. > > I can dig it. My main thing is that I think I'm doing everything > right--I'm unregistering event listeners before doing > removeChild()--but it seems that something still has a reference to my > deleted objects after I remove them. Any other tips for making sure > the code for one view has been deleted before I load another? > > OK > DAH >

