XML - My brain must be fried

This code should trace the “data” node of this xml document, but it doesn’t.



var xmlResponder:URLRequest = new URLRequest("http://www.blogger.com/feeds/8730758290724925733/posts/default");
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
xmlLoader.load(xmlResponder);



function xmlLoaded(e:Event){
    var xmlData:XML = new XML();
    xmlData = new XML(e.target.data);
    trace(xmlData.entry)
}

It will trace the whole xml file if I trace xmlData… but doesn’t get any of the parameters. I’ve done this in the past without a problem, what am I forgetting?