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;
publicclass Main extends Sprite{
public function Main(){
var movieList:XML = <listName>My favorite movies</listName>;
trace(movieList.toString());
}
}
}