Ciao a tutti...ho un problemone...![]()
Ho un movie principale che carica le varie sezioni esternamente nel movieclip "swfsezioni"..
In uno di questi swf esterni a sua volta carico da un file .txt delle foto con relative descrizioni con questa funzione:
dati = new LoadVars();
dati.path = this;
dati.onLoad = function(success) {
if (success) {
for (var prop in this) {
if (prop == "foto1") {
this.path.tec1.a.loadMovie(this[prop]);
}
else if (prop == "foto2") {
this.path.tec2.a.loadMovie(this[prop]);
}
else if (prop == "descrizione1") {
this.path.testi.descrizione1_txt.html = true;
this.path.testi.descrizione1_txt.htmlText = this[prop];
}
else if (prop == "descrizione2") {
this.path.testi.descrizione2_txt.html = true;
this.path.testi.descrizione2_txt.htmlText = this[prop];
}
else {
this.path.testi.descrizione2_txt.html = true;
this.path.testi.descrizione2_txt.htmlText = this[prop];
}
}
} else {
this.path.testi.descrizione1_txt.text = "file inesistente";
}
};
ASSetPropFlags(dati, ["onLoad", "path"], 7);
dati.load("tecnicamese.txt");
Ora...mentre in locale funziona tutto alla perfezione..appena metto online nè le foto nè i testi vengono caricati.....PERCHE'???????
Stò impazzendo con questi percorsi....aiutatemi!!![]()