User Guide

Tracing the properties of an object 79
Tracing the properties of an object
To find out why you might be having problems with a particular object, you can iterate its
properties as follows:
for (i in my_obj) {
trace(i + " = " + my_obj[i]);
}