the problem is that when i test the flash inside macromedia flash it works fine but when i export the flash it doesnt want to show the data ,what can i do to fix that problem. here are some screenshot 1 test mode and one exported and the script used to show the data.i attached the fla. file for anyone that whants to see it or use it.
function loadXML(loaded)
{
if (loaded)
{
_root.wins = this.firstChild.childNodes[1].childNodes[0].childNodes[2].firstChild.nodeValue;
_root.losses = this.firstChild.childNodes[1].childNodes[0].childNodes[3].firstChild.nodeValue;
_root.forfeits = this.firstChild.childNodes[1].childNodes[0].childNodes[4].firstChild.nodeValue;
_root.rank = this.firstChild.childNodes[1].childNodes[0].childNodes[1].firstChild.nodeValue;
wins_txt.text = _root.wins;
losses_txt.text = _root.losses;
forfeits_txt.text = _root.forfeits;
rank_txt.text = _root.rank;
}
else
{
trace ("file not loaded!");
} // end else if
} // End of the function
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("[http://www.teamwarfare.com/xml/viewteam_v2.asp?team=Assassin+Tactical+Operations](http://www.teamwarfare.com/xml/viewteam_v2.asp?team=Assassin+Tactical+Operations)");

