Re: [Flashcoders] Re: AVM1Movie unload and static variables

2008-01-10 Thread Matthias Dittgen
> > > > ____________ > > > > From: [EMAIL PROTECTED] on behalf of Matthias Dittgen > > Sent: Thu 1/10/2008 2:20 AM > > To: Flash Coders List > > Subject: [Flashcoders] Re: AVM1Movie unload and static variables > > > > > >

Re: [Flashcoders] Re: AVM1Movie unload and static variables

2008-01-10 Thread Matthias Dittgen
p > does not always delete the reference to the associated subclass of MovieClip > > hth - and might be barking up the wrong tree > > rob > > > > From: [EMAIL PROTECTED] on behalf of Matthias Dittgen > Sent: Thu 1/10/2008 2:20 AM > To:

[Flashcoders] Re: AVM1Movie unload and static variables

2008-01-10 Thread Costello, Rob R
unload and static variables In fact this problem applies not only for AS2/AS3 interop. How can I unload MovieClips and thus unload static variables to have a fresh startover, when loading the same MovieClip later again? Matthias On Jan 9, 2008 3:32 PM, Matthias Dittgen <[EMAIL PROTECTED]>

Re: [Flashcoders] Re: AVM1Movie unload and static variables

2008-01-09 Thread Hans Wichman
Hi, you might want to try deleting all your classes. It's a nasty trick however and who knows what you'll run into next time. Another option is: don't use singletons or finalize them before you exit your current application instance. Assuming all your classes are in a package org.dittgen, you cou

[Flashcoders] Re: AVM1Movie unload and static variables

2008-01-09 Thread Matthias Dittgen
In fact this problem applies not only for AS2/AS3 interop. How can I unload MovieClips and thus unload static variables to have a fresh startover, when loading the same MovieClip later again? Matthias On Jan 9, 2008 3:32 PM, Matthias Dittgen <[EMAIL PROTECTED]> wrote: > Hello Flashcodes, > > I is