espero q esto t sirva
Cita: <html>
<head>
<title>Efecto 2</title>
<script language="JavaScript">
<!--
var scrtxt=" Aqui va el mensaje que quieras mostrar ";
var lentxt=scrtxt.length;
var width=100;
var pos=1-width;
function barraestado() {
pos++;
var scroller="";
if (pos==lentxt) {
pos=1-width;
}
if (pos<0) {
for (var i=1; i<=Math.abs(pos); i++) {
scroller=scroller+" ";}
scroller=scroller+scrtxt.substring(0,width-i+1);
}
else {
scroller=scroller+scrtxt.substring(pos,width+pos);
}
window.status = scroller;
setTimeout(" barraestado() ",150);
}
//-->
</script>
</head>
<body onLoad =" barraestado() ;return true;">
Aqui va el resto de tu página...
<a href="index.html">index</a>
</body>
</html>
este otro es mas sencillo ( creo q esto t serviria mas)
Cita: <html>
<head>
<title>Efecto 2</title>
</head>
<body>
<a href="link.htm" onmouseout="window.status='Texto al sacar el puntero'"
onmouseover="window.status='El Mensaje';return true">Texto</a>
</body>
</html>
espero sea de tu ayuda...
salu2