To access text nodes with the array-element access operator : Text node : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Text node »

 

To access text nodes with the array-element access operator


 

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.DESCRIPTION.text(  )[0]);  // Displays: A
        trace(novel.DESCRIPTION.text(  )[1]);  // Displays: thick book.

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» Text node