Re: [flexcoders] AS - adding dynamic properties to an object

2005-04-04 Thread Harris Reynolds
In AS you always have the option of taking advantage of the dynamic type system and just adding properties to an untyped object on the fly. What is the type of the object? Is that an option? ~harris --- viraf_bankwalla [EMAIL PROTECTED] wrote: Hi, How do I add dynamic properties to an

Re: [flexcoders] AS - adding dynamic properties to an object

2005-04-04 Thread Manish Jethani
On Apr 5, 2005 1:08 AM, viraf_bankwalla [EMAIL PROTECTED] wrote: How do I add dynamic properties to an obect ? These properties are received over the HTTPService request. If you have an instance of a dynamic class, you can just stick them onto the object. var o:Object = new Object(); //