Proverò a fare come dici.... ma come faccio a mettrere nella Text Area il file esterno???
Prima caricavo così il file esterno:

System.useCodepage = true
my_txt.multiline = true;
my_txt.wordWrap = true;
var lorem_lv:LoadVars = new LoadVars();
lorem_lv.onData = function (src:String):Void {
if (src != undefined) {
my_txt.htmlText = src;
} else {
my_txt.text = "Unable to load external file.";
}
}
lorem_lv.load("contenuti/status.txt");

Grazie Alberto