If you have the node's nodeID, you can use: var objNode = [Tree].getNode(String nodeID); To retrieve a node by its object ID, use this: var objNode = [Tree].findNodeByObjectID(String objectID); This method only returns the first node in the tree with this object ID. To retrieve a node by its name, use this code: var objNode = [Tree].findNodeByName(String name); |