Ver Mensaje Individual
  #12 (permalink)  
Antiguo 12/03/2008, 17:11
neodraks
 
Fecha de Ingreso: marzo-2008
Mensajes: 3
Antigüedad: 16 años, 1 mes
Puntos: 0
Re: Titulo En Movimiento

aki te dejo un pekeño scrip para las pestañas no se mueve per kada x tiempo canvia

<LINK REL="Shortcut Icon" HREF="ads_data/n.ico">

<SCRIPT LANGUAGE='JavaScript'>

var default1 = "Welcome to Noniano Noniano"; // only shown once at page load
var text1 = "Welcome to Noniano Noniano";
var text2 = "You are in Home";
var changeRate = 4000; // 1000 = 1 second
var messageNumber = 0;

function changeStatus() {
if (messageNumber == 0) {
window.status=default1;
document.title=default1;
}
else if (messageNumber == 1) {
window.status=text1;
document.title=text1;
}
else if (messageNumber == 2) {
window.status=text2;
document.title=text2;
messageNumber = 0;
}

messageNumber++;
setTimeout("changeStatus();",changeRate);

}

changeStatus(); // leave here to run right away

// -->
</SCRIPT>