javawebgrrl wrote:

Hi,
Is there an object in ActionScript which will behave something like a java.util.HashMap ?


The generic "Object" in Flash acts just like a map.

var map:Object = new Object();
map[strKey] = theObject;

.. later...
theObject = map[strKey];

-d







Reply via email to