This is my xml file that I am supposed to read. How would I get flash AS2 to read it. I do have it somewhat working but it is not working like it should. I did have to hide some domain names since they are a customer.

The XML:
<?xml version="1.0" encoding="UTF-8" ?>
<text><p>This is the english page. If you have sufficient permissions, please take the time to <a href="/admin/xxx_pages/244/edit">edit</a> me.</p></text>

From the flash file:
function loadXML(loaded) {
if (loaded) {
_root.text = this.firstChild.childNodes[0].childNodes[0];
comment_txt.text = _root.text;
} else {
trace("file not loaded!");
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("http://xxx/markets/africa.xml");