Tengo un pequeño problemilla. He creado un textfield en el cual se me carga un .txt, pero calro no le puedo dar ningun estilo al texto y necesito darle, como puedo hacerlo?? el texto lo cargo con LoadVars, es el siguiente:
function arreglarTexto(texto_str) {
texto_str = unescape(texto_str);
return texto_str.substr(0, texto_str.length-24);
}
var poema_lv = new LoadVars();
poema_lv.onLoad = function(exito) {
if (exito) {
texto.text = arreglarTexto(poema_lv.toString());
} else {
texto.text = "Error !!!";
}
};
if (cambiotexto=="como"){
poema_lv.load("textos/B.txt");
} else if (cambiotexto=="donde"){
poema_lv.load("textos/B.txt");
} else if (cambiotexto=="que"){
poema_lv.load("textos/B.txt");
}
GRACIAS