Greetings, I was wondering if the following situation would be possible:
imagine having a string like
var query:String = "Object.property.toString() == somevalue.toString()";
and that the string somehow could be converted to actual actionscript
code...
if(query){
trace("your actionscriptquery worked");
}
else{
trace("your actionscriptquery did not worked");
}

