Freehand, seguramente en las direcciones que te pasaron estará el código javascript que necesitas, pero conociendo la experiencia de buscar un código en particular en páginas de scripts te mando el código como lo tengo yo en un sitio de un cliente que funciona:
Código:
<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()
<!--
Esto es para 5 textos diferentes que se irán escribiendo como una máquina de escribir a una velocidad que la podés setear en el código. Si querés ver el ejemplo práctico de como funciona entrá a www.vtronline.com.
Suerte.
<div align="center"><img src="http://www.solutionsabc.com/firmabrce.gif" width="200" height="42">
</div>