when you iterate 'this' it will not iterate the same way as it did with as2.. iterating though properties of this will only show you any dynamic properties that were added to 'this' it will not show every property associated to 'this'..
and to iterate though children on the display list of a container .. i would think that you would need to iterate based on the children length..
ActionScript Code:
var totalChildren:int = this.numChildren;
var item:int;
for(item = 0; item < totalChildren; item++){
trace(this.getChildAt(item).name);
}
there might be a better way .. but this would at least iterate through the children of 'this' based on what is on its display list.