Se il tuo problema è avere due campi diversi che caricano testo esterno:
testi=new loadVars();
testi.onLoad=function(success) {
if(success) {
testo1=this["testo1"];
testo2=this["testo2"];
}
}
testi.load("tuofile.txt");
in tuofile.txt
testo1=.........&testo2=........
o devi caricare necessariamente due diversi txt?