14/04/2008, 15:52
|
| | Fecha de Ingreso: abril-2008
Mensajes: 8
Antigüedad: 16 años, 7 meses Puntos: 0 | |
Problema con Marquesina Horizontal Hola, quiero hacer una marquesina horizontal que lea la el texto de un txt externo, el texto trae etiquetas html, aqui les dejo el código para ver si me pueden ayudar
texto.txt
texto=<em><strong><font color="#000000" size="28" face="Algerian" >Hola Mundo</font></strong></em>
---------------------------------------------------------------------------------------------------------
marquesina.fla
onClipEvent (load) {
System.useCodepage=true;
archivo="texto.txt"; //nombre del archivo
//carga del archivo .txt
carga = new LoadVars();
carga.html = true;
carga.onLoad = function(ok) {
if (ok) {
_root.html = true;
_root.text1 = eval("carga.texto");
};
};
carga.load(archivo);
}
onClipEvent (enterFrame) {
tmp = _root.text1.substr(0, 1);
_root.text1 = _root.text1.substr(1, _root.text1.length-1)+tmp;
trace (_root.text1);
}
diganme, que estoy haciendo mal???
gracias |