In quel caso devi svuotare la casella "Variable", e dare al campo di testo un nome di istanza, ad esempio "testo_txt". Poi ci trascini sopra la scrollbare ed infine, per caricare i dati, scrivi nello stesso frame:
codice:
dati = new LoadVars();
dati.path = this;
dati.onLoad = function(done)
{
if(done){
this.path.testo_txt.html = true;
this.path.testo_txt.htmlText = "";
for(var i = 0; i < numeroMassimo; i++){
this.path.testo_txt.htmlText += this["titolo" + i] + "
";
}
}
};
ASsetPropFlags(dati, ["onLoad", "dati"], 7);
dati.load("list.txt");