Lasciate stare ragazzi che HO RISOLTO rispolverando un vecchio codice che tenevo in cantina;
lo posto nel caso a qualcuno potesse essere d'aiuto
codice:
System.useCodepage = true;
mio_xml = new XML();
mio_xml.path = this;
mio_xml.ignoreWhite = true;
mio_xml.onLoad = function(success)
{
if(success){
this.path.nomes = this.firstChild.firstChild
} else {
//this.path.testo = "caricamento errato";
//this.path.testo2 = "caricamento errato";
}
};
mio_xml.load("xml/indicemodelle.xml");
my_xml = new XML();
my_xml.path = this;
my_xml.ignoreWhite = true;
my_xml.onLoad = function(success)
{
if(success){
this.path.nomesi = this.firstChild.firstChild
} else {
//this.path.testo = "caricamento errato";
//this.path.testo2 = "caricamento errato";
}
};
my_xml.load("xml/indicemodelle2.xml");
Grazie per la pazienza