| Issue 21: | how to get partculier object in getChildren array | |
| 1 person starred this issue and may be notified of changes. | Back to list |
var children:Array = generic.getChildren();
var n:int = children.length;
for (var i:int = 0; i < n; i++)
{
var child:DisplayObject = DisplayObject(children[i]);
//trace(child.x, child.y, child.width, child.height);
//Alert.show(" width "+child.width+" height "+child.height);
}
|
Mergedinto: 22