Retrieve an XMLList representing the element's children, and then invoke parent( ) on that list : Parent : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Parent »

 

Retrieve an XMLList representing the element's children, and then invoke parent( ) on that list


 


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>;
        
        var bookDetails:XMLList = novel.*;
        var book:XML = bookDetails.parent();
        
        trace(book);

    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo XML
» Parent