View Single Post
Old 12-16-2001, 07:48 PM  
Unchilled
Confirmed User
 
Join Date: Sep 2001
Location: Somewhere in the middle of the Fucking Desert.
Posts: 125
<script language="JavaScript">

< !--
function scrollit_r2l(seed)
{
var m1 = "Add this scrolling message in your status bar. It's Easy ! Change your message to read anything you choose . . . Unchilled";

var msg = m1;
var out = " ";
var c = 1;
if (seed > 100) {
seed--;
var cmd="scrollit_r2l(" + seed + ")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
var cmd="scrollit_r2l(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
var cmd="scrollit_r2l(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit_r2l(100)",100 );
}
}
}
//-->

</script>
Unchilled is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote