So, I have something like this:
var xmlStatement:String = "xmlObject.node[3].@thisValue";
What mystery function do I need to use so that I can execute xmlStatement and get thisValue from this xmlObject? How....
var attribute:String = mysteryFunction(xmlStatement);
PS I know that eval () works for actionscript2, I need an as3 solution. :)
source
share