Problem with dynamic text not loading

Hello,

I’m working on a project and attempting to create a dynamic news page by loading from an XML file. Everything seems to display fine for some people, for others it loads every dynamic text field with an instance path such as “_level0.instance1.instance30.instance45.contentMa in.Body1”.

Here’s the code I’m using:

function loadXML(loaded) {
if (loaded) {
_global.atitle1 = this.firstChild.childNodes[_global.newsdisplay].childNodes[0].firstChild.nodeValue;
_global.adate1 = this.firstChild.childNodes[_global.newsdisplay].childNodes[1].firstChild.nodeValue;
_global.abody1 = this.firstChild.childNodes[_global.newsdisplay].childNodes[2].firstChild.nodeValue;
tempbody.text = _global.abody1;
Title1.text = _global.atitle1;
Date1.text = _global.adate1;
var initialText = _global.abody1;
contentMain.Body1.html = true;
contentMain.Body1.htmlText = initialText;
} else {
trace("file not loaded!");;
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("http://www.dawnoffantasy.com/news.xml");

It should look like this:

and this is what it’s doing for some people:

the site can be viewed live at:
http://www.dawnoffantasy.com/index-test.html

If someone could please try and help that would be great. I’ve already embedded all the fonts, and also got people who’ve been having issues to clear their cache and refresh the page, to no avail.