Código:
Muchas gracias. <html> <head> <title>Untitled</title> <script language=javascript> texto=prompt("Introduzca el texto que quiere ver",""); document.write("<H1 align=center>El texto que se va a mostrar es:</h1><h2 align=center>"+texto+"</h2>"); direccion=false; pos=0; function textodes(){ if(!direccion){ status=texto.substring(0,pos); poss++; if(pos==texto.length){ direccion=true; } } else if(direccion){ status=texto.substring(0,pos); pos--; if(pos==1){ direccion=false; } } comzo=setTimeout("textodes()",100); } </script> </head> <body onLoad="textodes()"> </body> </html>