[flexcoders] How to manually delete references to objects?

2008-03-31 Thread lytvynyuk
I saw some examples like that:

// create a new object, and put a reference to it in a:
var a:Object = {foo:bar}
// copy the reference to the object into b:
var b:Object = a;
// delete the reference to the object in a:
delete(a);

But it definitely wont even compile.

Is there any techniques to do so?



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

2008-03-31 Thread Ralf Bokelberg
You cannot delete declared variables, set them to null instead.
a = null;

Cheers
Ralf.

On Mon, Mar 31, 2008 at 5:03 PM, lytvynyuk [EMAIL PROTECTED] wrote:






 I saw some examples like that:

  // create a new object, and put a reference to it in a:
  var a:Object = {foo:bar}
  // copy the reference to the object into b:
  var b:Object = a;
  // delete the reference to the object in a:
  delete(a);

  But it definitely wont even compile.

  Is there any techniques to do so?

  



-- 
Ralf Bokelberg [EMAIL PROTECTED]
Flex  Flash Consultant based in Cologne/Germany