A
Amy Blankenship
James A. Fortune said:James said:'& DataHolder.Item(propArray(i)) [instead of reportInfo(propArray(i))]
That won't work. The user-defined type can't use Item to refer to an
element. Maybe Dick's idea will work using
DataHolder.Properties(propArray(i))
That's exactly why I came here asking the question. In other languages I
use, it is quite easy to get at an object's properties if you have a string
with the property name in it. In fact, that's what Objects are _for_ in
ActionScript 3. Dictionaries, by contrast, can have literally anything in
the key value, including an object (in AS3).
-Amy