ActionScript 2.0 Components Language Reference |
|
|
|
| TreeDataProvider interface > TreeDataProvider.getTreeNodeAt() | |||
Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
someNode.getTreeNodeAt(index)
index An integer representing the position of the child node in the current node.
The specified node.
Method; returns the specified child node of the node.
The following code locates a node and then retrieves the second child of myTreeNode:
var myTreeNode = myTreeDP.firstChild.firstChild; myTreeNode.getTreeNodeAt(1);
|
|
|
|