Xml.parentnode - MACROMEDIA FLASH MX 2004-ACTIONSCRIPT LANGUAGE Reference

Actionscript language reference
Table of Contents

Advertisement

XML.parentNode

Availability
Flash Player 5.
Usage
my_xml.parentNode:XMLNode
Description
Read-only property; an XMLNode value that references the parent node of the specified XML
object, or returns
to manipulate child nodes; use the
methods to manipulate child nodes.
Example
The following example creates an XML packet and displays the parent node of the
node in the Output panel:
var my_xml:XML = new XML("<login><username>morton</username>
<password>good&amp;evil</password></login>");
// first child is the <login /> node
var rootNode:XMLNode = my_xml.firstChild;
// first child of the root is the <username /> node
var targetNode:XMLNode = rootNode.firstChild;
trace("the parent node of '"+targetNode.nodeName+"' is:
"+targetNode.parentNode.nodeName);
trace("contents of the parent node are:\n"+targetNode.parentNode);
/* output (line breaks added for clarity):
the parent node of 'username' is: login
contents of the parent node are:
<login>
<username>morton</username>
<password>good&amp;evil</password>
</login>
*/
See also
XML.appendChild(), XML.insertBefore(), XML.removeNode(),
1046
Chapter 2: ActionScript Language Reference
if the node has no parent. This is a read-only property and cannot be used
null
appendChild()
,
, and
insertBefore()
XMLNode class
removeNode()
username

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH MX 2004-ACTIONSCRIPT LANGUAGE and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flash mx

Table of Contents