Giorno....

ho questo script:

this.testo.text = " caricamento in corso";
this.testo.background = true;
this.testo.backgroundColor = 0xF9EAD5;
this.carica = new LoadVars();
this.carica.path = this;
this.carica.onLoad = function(ok) {
if (ok) {
this.path.testo.text = this.testo;
}
};
this.carica.load("condizioni.txt");

volevo sapere xke mi funziona in locale e non mi funziona quando lo pubblico (il file txt non viene caricato)