Mega Code Archive
To view all the flashVars properties, you can iterate over the FlexGlobals topLevelApplication parameters properties, as the fol
import mx.core.FlexGlobals;
private function init():void {
for (var i:String in FlexGlobals.topLevelApplication.parameters) {
ta1.text += i + ":" + FlexGlobals.topLevelApplication.parameters[i] + "\n";
}
}