beh, direi che il problema è che una delle due variabili che dovrebbero fare il loadMovie, non vengono valorizzate
Codice PHP:
var dati = new LoadVars();
dati.path = this;
dati.onLoad = function(success) {
if (success) {
for(var prop in this){
this.path[prop + "_txt"].text = this[prop];
}
trace(this.foto01);
trace(this.foto02);
this.path.foto01.loadMovie(this.foto01);
this.path.foto01._x=220
this.path.foto01._y=280
this.path.foto02.loadMovie(this.foto02);
this.path.foto02._x=670
this.path.foto02._y=265
} else {
this.path.nome_txt.text = "file inesistente";
}
};
ASSetPropFlags(dati, ["onLoad", "path"], 7);
dati.load("1.txt");
se aggiungi nel tuo codice quei due trace cosa ottieni in output?