Answered
Using for( x in obj )
If I have this in my Flash file all is great, but I want to put this into a custom Class file. What flash class do I need to import into my custom class to get this to work.
var x = 0;
for( item in param_ ){
x=x+1;
trace( x + ': ' + item + ' = ' + param_[item] );
} // for
The error message in the Output box is "There is no property with the name 'item'."
Again this only occurs if I place the code in the Class file I have made.