XML.nodeValue 765
XML.nodeName
Availability
Flash Player 5.
Usage
my_xml.nodeName
Description
Property; the node name of the XML object. If the XML object is an XML element
(
nodeType == 1), nodeName is the name of the tag representing the node in the XML file. For
example,
TITLE is the nodeName of an HTML TITLE tag. If the XML object is a text node
(
nodeType == 3), the nodeName is null.
See also
XML.nodeType
XML.nodeType
Availability
Flash Player 5.
Usage
my_xml.nodeType
Description
Property (read-only); takes or returns a nodeType value, where 1 is an XML element and 3 is a
text node.
See also
XML.nodeValue
XML.nodeValue
Availability
Flash Player 5.
Usage
my_xml.nodeValue
Description
Property; the node value of the XML object. If the XML object is a text node, the nodeType is 3,
and the nodeValue is the text of the node. If the XML object is an XML element (node type
is 1), it has a
null nodeValue and is read-only.
See also
XML.nodeType