Me he dado cuenta k el flash al tener el xml descargado (e archivos temporales) no lo vuelve a descargar (creo k hay esta el tema)
voy a copiar un trozo de codigo del flash :
function xmlLoaded(success)
{
trace ("Loaded XML: " + success);
if (success)
{
gmcMain.mcLoader.gotoAndPlay("done");
}
else
{
trace ("Load XML failed");
} // end else if
} // End of the function
mcLoader.gotoAndPlay(1);
gXmlDataPath = "imageData.xml";
trace ("gXmlDataPath: " + gXmlDataPath);
_global.gImageData_xml = new XML();
gImageData_xml.load(gXmlDataPath);
gImageData_xml.onLoad = xmlLoaded;
gImageData_xml.ignoreWhite = true;
mcLoader.onEnterFrame = function ()
{
gImgBytesLoaded = gImageData_xml.getBytesLoaded();
gImgBytesTotal = gImageData_xml.getBytesTotal();
loadWidth = Math.round(gImgBytesLoaded / gImgBytesTotal * 106);
loadWidth = Math.min(106, loadWidth);
this.mcBar._width = Math.ceil(loadWidth);
};
gotoAndPlay(1);
si necesitais algo de codigo o lo k sea avisadme
