Debugging and Monitoring Applications > Using onStatus event handlers > Getting properties of an object

 

Getting properties of an object

If you need to know why you might be having problems with a particular object, you can iterate its properties like this:

for (i in my_obj) {
         trace(i + " = " + my_obj[i]);
}