See also
getNamespaceForPrefix (XMLNode.getNamespaceForPrefix method)
getPrefixForNamespace (XMLNode.getPrefixForNamespace method)
nextSibling (XMLNode.nextSibling property)
public nextSibling : XMLNode [read-only]
An XMLNode value that references the next sibling in the parent node's child list. This
property is
if the node does not have a next sibling node. This property cannot be used
null
to manipulate child nodes; use the
methods to manipulate child nodes.
Availability: ActionScript 1.0; Flash Player 5
Example
The following example is an excerpt from the example for the
shows how you can use the
nodes:
for (var aNode:XMLNode = rootNode.firstChild; aNode != null; aNode =
aNode.nextSibling) {
trace(aNode);
}
See also
firstChild (XMLNode.firstChild property)
,
method)
insertBefore (XMLNode.insertBefore method)
(XMLNode.removeNode method)
nodeName (XMLNode.nodeName property)
public nodeName : String
A string representing the node name of the XML object. If the XML object is an XML
element (
nodeType == 1
XML file. For example,
a text node (
nodeType == 3
Availability: ActionScript 1.0; Flash Player 5
1330
ActionScript classes
appendChild()
XML.nextSibling
,
XML
),
is the name of the tag that represents the node in the
nodeName
is the
TITLE
nodeName
), nodeName is
null
,
insertBefore()
XML.firstChild
property to loop through an XML node's child
,
appendChild (XMLNode.appendChild
,
removeNode
of an HTML
TITLE
.
,
, and
removeNode()
property, and
tag. If the XML object is
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?
Questions and answers