Works perfect locally - load everyrhing to my server and up barfs an error … my xml file isn’t being loaded any ideas?- yes the swf and xml file are in the same directory…
Code:
[LEFT]function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
swf = [];
name = [];
link = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
swf* = xmlNode.childNodes*.childNodes[0].firstChild.nodeValue;
name* = xmlNode.childNodes*.childNodes[1].firstChild.nodeValue;
link* = xmlNode.childNodes*.childNodes[2].firstChild.nodeValue;
}
firstImage();
} else {
display_txt.text = "Error loading XML!";
display_txt._y = 380;
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load(“swfs.xml”)[/LEFT]