So, what I'm hearing is every member of an object is also added to an associative array in that object by name? That's great news. I didn't expect that level of DOM-type support from AS... I am learning every day that these AS guys got a LOT right!
Thanks! --- In [email protected], "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > That would be equivalent to > > return preExistingObject["inString"]; > > For the current object, use this["inString"]. > > > --- In [email protected], "Matt Maher" matt@ wrote: > > > > I have a hard question to ask as I don't know the terms to use for > it. > > Basically, I want to use a string variable to set what member > variable > > to pull from another object > > > > How can I make something like the following work: > > > > function fun(inString:String):String { > > > > > > return preExistingObject.eval(inString); > > } > > >

