Hola Todos,
Tengo un problemilla con la lectura de un txt desde flash.
Me lee todo bien, acentos y ñs icluidas pero cuando utilizao el símbolo de porcentaje (%) no me lo muestra, alguien sabría solucionarlo?????
Muchas gracias
Dejo el código flash:

System.useCodepage=true;
Obj2 = new LoadVars();
Obj2.load("noticias.txt");
myTexto2.htmlText = "Cargando...";
Obj2.onLoad = function() {
titulo = Obj2.titulo.split("@@@");
descripcion = Obj2.descripcion.split("@@@");
separador = "-------------------------------";
myTexto2.htmlText = "";
for (var i = 0; i<titulo.length; i++) {
myTexto2.htmlText += "<b>"+"<u>"+titulo[i]+"</u></b><br>"+descripcion[i]+"<br>"+"<i>"+"<br>"+separador;
}
};