/ Published in: ActionScript
this will loop through an object and get all its properties
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//this will loop through an object and get all its properties for (var p in <object name>) { trace(p+":"+<object name>[p]+"\n"); }