Hello,

I have an SWF files that gives text data from a XML file.

The problem is that when I upload the XML file updated, the SWF shows always the old XML file.

Can you help me? I have done so:

Actionscript Code:
function loadXML(loaded) {

if (loaded) {

...

} else {
  trace("file not loaded!");

}

}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("classifica_punti.xml");

Thank you in advance.