No se porque?
Código :
//arreglar texto
function(arreglarTexto(texto_str:String):String {
texto_str = unescape(texto_str);
return texto_str.substr(0, texto_str.length-24);
}
}
//cargar texto
var biografia_lv:LoadVars = new LoadVars();
biografia_lv.onLoad = function(exito) {
if (exito) {
bio_txt.text = arreglarTexto(biografia_lv.toString());
} else {
bio_txt.text = "Error !!!";
}
};
biografia_lv.load("bio.txt");
stop();Espero sus respeustas.
Desde ya muchisismas gracias!!!!

Zguillez