I would like to get the name of the elements in the library when this element is on the stage. If I can't I would like to get the name of "The AS3 link".
I tried with this code:
for (var i=0; i<this.numChildren; i++){
trace("Movie Name: "+this.getChildAt(i).name);
trace("Movie Class: "+getQualifiedClassName(this.getChildAt(i)));
trace("Movie Super Class: "+getQualifiedSuperclassName(this.getChildAt(i)));
}
But I only get this: Movie Name: instance1 Movie Class: flash.display::Bitmap Movie Class: flash.display::DisplayObject