BTW, check out Josh Tynjala's writeup of some of the new stuff that's going
to be in ECMAScript:
http://www.zeuslabs.us/2007/10/28/discover-ecmascript-4-the-future-of-actionscript/

Included is Map  :)

You can read the document outlining some of the new stuff in ECMAScript 4
here: http://www.ecmascript.org/es4/spec/overview.pdf

Doug

On 10/27/07, ben.clinkinbeard <[EMAIL PROTECTED]> wrote:
>
>   // 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