Free, perdón si me encabrité demás, pero no había visto tu mensaje de agradecimiento, tonces, disculpas por el entredicho, y lamento no haberte solucionado el problema.
jlmm, no puse ese mensaje en Ocio que dices porque hace unos días ya se había armado una discusión similar (tal vez por eso, después de haber leído esos mensajes, me calenté) Gracias por las disculpas, y obviamente están aceptadas y todo olvidado.
Con relación al código, lo rechequé y pucha, salvo el error del "/script" final anda, es más, acá lo copio tal cual lo acabo de escribir en el notepad y funciona (en IE 5), pruebenlo:
Código:
<html>
<head>
<title>MAQUINA DE ESCRIBIR</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!--
var current = 0
var x = 0
var speed = 100
var speed2 = 2000
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this = ' '
}
}
typ = new initArray(6)
typ[0]="TEXTO 1"
typ[1]="TEXTO 2"
typ[2]="TEXTO 3"
typ[3]="TEXTO 4"
typ[4]="TEXTO 5"
typ[5]="TEXTO 6"
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + "_"
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>
De nuevo gracias, disculpas por la calentura y VIVAN LOS FOROS! que es el único lugar donde realmente se aprende.
<div align="center"><img src="http://www.solutionsabc.com/firmabrce.gif" width="200" height="42">
</div>