Converting XMLList to a String: toString( ) had been invoked on the single XML instance directly: : XMLList « XML « Flash / Flex / ActionScript






Converting XMLList to a String: toString( ) had been invoked on the single XML instance directly:

 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var novel:XML = <BOOK ISBN="0141182806">
            <TITLE>Actionscript</TITLE>
            <AUTHOR>J, K</AUTHOR>
            <PUBLISHER>Penguin Books Ltd</PUBLISHER>
          </BOOK>
        var title:XMLList = novel.TITLE;
        trace(title);  // Displays: Actionscript
        
        var details:XMLList = novel.*;
        
        trace(details);

    }
  }
}

        








Related examples in the same category

1.To access the XMLList representing child nodes, use the XML class's instance method children( ).
2.To access a specific child in an XMLList
3.Treating XMLList as XML
4.To replace an XML element with new elements, we assign either an XMLList or XML object to that element
5.Assigning Values to an XMLList