// iterate over strings/property names
for(var prop:String in obj)
{
   trace(prop + " = " + obj[prop]);
}

// iterate over properties
for each(var member:Object in obj)
{
   trace(member);
}

Should be more complete descriptions in the docs.

> any idea why there is no formal Map object in AS3
Nope. Maybe ECMAScript doesn't support them? Just guessing.


HTH,
Ben

Reply via email to