Search HouseOfScripts.com

 

All Scripts        JavaScripts        ASP Scripts        Other Scripts

 

  Scroll text Status Bar only once asp, send, email, cdonts, link, recordset, hyper, hyperlink, create, list, box, dependant, dynamic

One of requests that I had was: "Looking for a status bar scroller that scrolls from the right to the left once and then stops." This is the script for that. You can see that text scrolled only once on the buttom of this page. If you are looking for the script to run message all the time, click here.

HEAD Section:

<SCRIPT LANGUAGE="JavaScript";>
function runtext(runt) {
var m1 = "I want to welcome you to the House of Scripts!!!! ";
var msg=m1;
var out = " ";
var c = 1;
if (runt > 100) {
runt--;
cmd="runtext("+runt+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (runt <= 100 && runt > 0) {
for (c=0 ; c < runt ; c++) {
out+=" ";
}
out+=msg;
runt--;
window.status=out;
cmd="runtext("+runt+")";
timerTwo=window.setTimeout(cmd,100);
}
}
</SCRIPT>

BODY:

<body onLoad="runtext(100)">

 

 


Home       Scripts       Active WebTools       Web Templates       Forum       Tools        Hosting       Questions/Comments       Add/Request