Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/04/2006, 20:54
Avatar de causita
causita
 
Fecha de Ingreso: mayo-2002
Ubicación: Lima-Perú
Mensajes: 2.043
Antigüedad: 22 años
Puntos: 8
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
__________________
|| no hay pregunta tonta....lo q hay son tontos q no preguntan || d-.-b

El Causita

Última edición por causita; 07/04/2006 a las 21:00