Re: [flexcoders] Re: passing Map in remote object

2005-12-11 Thread Scott Langeberg
Darin, Small typo. Think you meant this: for (var key:String in obj){ trace(key: +key+ | Obj[key]: +String(obj[key])); Alert.show(key: +key+ | Obj[key]: +String(obj[key]) );} Scott On 12/10/05, Darin Kohles [EMAIL PROTECTED] wrote: Encounter this often in DOM JS coding. I would just add to

[flexcoders] Re: passing Map in remote object

2005-12-10 Thread Darin Kohles
Encounter this often in DOM JS coding. I would just add to Matt's code: for (var key:String in obj){ trace(var: +var+ | Obj[var]: +String(obj[var])); Alert.show(var: +var+ | Obj[var]: +String(obj[var])); } Do somthing like that and you'll be able to know which object/property you want to