U-X > XML.hasChildNodes |
![]() ![]() ![]() |
XML.hasChildNodes
Availability
Flash Player 5.
Usage
myXML
.hasChildNodes()
Parameters
None.
Returns
Nothing.
Description
Method; returns true
if the specified XML object has child nodes; otherwise, returns false
.
Example
The following example uses the information from the XML object in a user-defined function.
if (rootNode.hasChildNodes()) { myfunc (rootNode.firstChild); }
![]() ![]() ![]() |