я так понимаю вы хотите пробежаться по DisplayObject'ам родителя?
вот пример:

Код AS3:
public static function getAllChildren(container:Sprite):Array {
var allChildren:Array = new Array();
var l:uint = container.numChildren;
while (l--) {
allChildren.push(container.getChildAt(l));
}
return allChildren;
}