Scrolling Text on Status bar


<BODY onLoad="scrollit(100)">

<SCRIPT><!--
function scrollit(seed) {
var m1 = "Nihar here !";
var m2 = " Scrolling Text on status bar";
var m3 = " using JavaScripts!";
var m4 = "";
var msg = m1 + m2 + m3 + m4;
var out = " ";
var c = 1;
if (seed > 100) {seed--;
cmd =
"scrollit(" + seed + ")";timerTwo = window.setTimeout(cmd, 100);
}

else if (seed <= 100 && seed > 0) {
for (c = 0; c < seed; c++) {out +=
" ";}
out += msg;
seed--;
window.status = out;
cmd =
"scrollit(" + seed + ")";timerTwo = window.setTimeout(cmd, 100);
}

else if (seed <= 0) {
if (-seed < msg.length) {out += msg.substring(-seed, msg.length);
seed--;
window.status = out;
cmd =
"scrollit(" + seed + ")";timerTwo = window.setTimeout(cmd, 100);
}

else {window.status =
" ";timerTwo = window.setTimeout(
"scrollit(100)", 75);}
}
}
//--></SCRIPT>

Comments

Popular posts from this blog

Add Serial no in crystal report without coding

File operations in C# (.net)

SQL – Generate decimal numbers sequence for particular number range