How to get a list of child objects that are inside another object
Posted by Matthew Hancock
Tutorials December 4th, 2007 at 6:11 pmHere is an easy way to get a list of child objects from inside another object.
for(x=0; x < my_mc.numChildren; x++){
trace("Type: "+my_mc.getChildAt(x)+" Name: "+my_mc.getChildAt(x).name);
}

Recent Comments