Re: [flexcoders] Re: How to manually delete references to objects?

2008-03-31 Thread Ralf Bokelberg
Ok i see. I guess it is an example taken from Flash. Flash is a little bit less strict if you use code on a timeline. Cheers Ralf. On Mon, Mar 31, 2008 at 5:36 PM, lytvynyuk <[EMAIL PROTECTED]> wrote: > > > > > > > I grabbed that example from the article at adobe website > -http://www.adobe.com/

[flexcoders] Re: How to manually delete references to objects?

2008-03-31 Thread lytvynyuk
I grabbed that example from the article at adobe website -http://www.adobe.com/devnet/flashplayer/articles/garbage_collection.html --- In flexcoders@yahoogroups.com, "Ralf Bokelberg" <[EMAIL PROTECTED]> wrote: > > You cannot delete declared variables, set them to null instead. > a = null; > > Che