can we get all the elements and all the descendants of those elements in a

VBox

? lets say i have Vobx, in which a grid is added.. and in grid there are many texinput controls.. i want to access all the descendants which are

Grid,GridRow,GridItem,TextInput

.. how to do that ?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You'll have to write a recursive function that traverses the hierarchy of components. There is no built-in method to access children below the first level of a container.

Something like:

function traceDisplayObject(object:DisplayObject):void {
  trace("Object: " + object);

  if (object is Container) {
    var container:Container = Container(object);
    var numChildren:uint = container.numChildren;

    for (var i:uint = 0; i<numChildren; i++) {
      traceDisplayObject(container.getChildAt(i));
    }
  }
}

traceDisplayObject(myVBox);
link|improve this answer
if (object is Container)... object could be grid containing textinput ? – Muhammad Husnain Ashfaq Dec 20 '10 at 11:52
When you traverse the object graph and come to the GridItem, then you'll have the TextInput as one of its children. – Christophe Herreman Dec 20 '10 at 12:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.