If the XML object in question contains only a single node only the text value of the node will be returned : toString « XML « Flash / Flex / ActionScript






If the XML object in question contains only a single node only the text value of the node will be returned

 

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

        var movieList:XML = <listName>My favorite movies</listName>;
        trace(movieList.toString());

    }
  }
}

        








Related examples in the same category

1.The toXMLString() method always return the full XML tag and all values contained within an element.
2.Printing Pretty
3.Setting the Number of Spaces per Indentation
4.Difference between toString and toXMLString
5.Converting an XML Element to a String
6.Converting an Attribute to a String