Use the properties wildcard : text node « XML « Flash / Flex / ActionScript






Use the properties wildcard

 

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>
          </BOOK>;
          
        trace(novel.TITLE.*[0]);  
    }
  }
}

        








Related examples in the same category

1.Access the content of a text node as a String, not an XML instance
2.Retrieve an XMLList with the two text nodes
3.To access text nodes with the array-element access operator
4.To place the text nodes from each of those children into an XMLList