Re: [flexcoders] Who can explain me this:

2009-07-28 Thread Todd Kerpelman
Here's my guess as to what's going on underneath the hood... private var a:Object = {data:String}; Let's create an object that lives at memory address 123 RAM Lane. This variable 'a' gives me the object that lives at that address. private var b:Object = {data:String}; Let's create an object that

RE: [flexcoders] Who can explain me this:

2009-07-28 Thread Gordon Smith
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Who can explain me this: Here's my guess as to what's going on underneath the hood... private var a:Object = {data:String}; Let's create an object that lives at memory address 123 RAM Lane. This variable 'a' gives me the object that lives

[flexcoders] Who can explain me this:

2009-07-27 Thread lytvynyuk
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script ![CDATA[ import mx.collections.ArrayCollection; private var a:Object

RE: [flexcoders] Who can explain me this:

2009-07-27 Thread Gordon Smith
: 1000 } a -| -- { data: 200 } b -| Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of lytvynyuk Sent: Monday, July 27, 2009 6:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Who can