To place the text nodes from each of those children into an XMLList : text node « XML « Flash / Flex / ActionScript






To place the text nodes from each of those children into an XMLList

 

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.*.text());


    }
  }
}

        








Related examples in the same category

1.Use the properties wildcard
2.Access the content of a text node as a String, not an XML instance
3.Retrieve an XMLList with the two text nodes
4.To access text nodes with the array-element access operator