I have an empty movieclip that's on the stage. I'm then placing a movieclip inside it, like so:
PHP Code:
function addTinySection() {
var tiny:MovieClip = new tinySection();
completeLoader.addChild(tiny);
tiny.name="tiny"+1;
trace(completeLoader.getChildAt(0).getChildAt(2).name);
}
addTinySection();
I can trace the child name of the movieclip "completeLoader", but I can't trace any of the children names of "tiny".