Mega Code Archive

 
Categories / Flash ActionScript / XML
 

Attribute parent() returns the element on which the attribute is defined

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var novel:XML = <BOOK ISBN="0000000000">             <TITLE>ActionScript</TITLE>             <AUTHOR>J, J</AUTHOR>             <PUBLISHER>Books Ltd</PUBLISHER>         <DESCRIPTION>A <B>very</B> thick book.</DESCRIPTION></BOOK>;                  trace(novel.@ISBN.parent());  // Returns the <BOOK> element     }   } }