Re: [flexcoders] How to create Value Objects dynamically at run time?

2010-01-26 Thread Tom Chiverton
On Tuesday 26 Jan 2010, gilbert_mizrahi wrote: Hence, I would like to create value objects dynamically, but I don't know how. You can add properties dynamincaly: var x:Object=new Object; x.foo=3; x.bar='baz'; You probably want some sort of custom class that can can track what fields are

RE: [flexcoders] How to create Value Objects dynamically at run time?

2010-01-26 Thread Gregor Kiddie
@yahoogroups.com Subject: Re: [flexcoders] How to create Value Objects dynamically at run time? On Tuesday 26 Jan 2010, gilbert_mizrahi wrote: Hence, I would like to create value objects dynamically, but I don't know how. You can add properties dynamincaly: var x:Object=new Object; x.foo=3; x.bar