Skip to content

Instantly share code, notes, and snippets.

View seacloud9's full-sized avatar
🔨
Happy to Build

Brendon Smith seacloud9

🔨
Happy to Build
View GitHub Profile
// jStick is a movie clip object within Flash that flash movie contains several graphic symbols
// the code below can be customised by replacing jstick with another flash movie clip that is exposed to actionscript
// then loop though the movie and it prints out the names of the child objects
for (var x:uint = 0; x < jStick.numChildren; x++){
trace ('\t|\t ' +x+'.\t name:' + jStick.getChildAt(x).name + '\t type:' + typeof (jStick.getChildAt(x))+ '\t' + jStick.getChildAt(x));
}