Text For Java Script Scroll
<SCRIPT>
<!-- Start of scroller script
var scrollCounter = 0;
var scrollText = "This little script will scroll for you....You will have to put all the words you want to scroll by on ONE LINE in the html code or it wont really work!"
var scrollDelay = 70;
var i = 0;
while (i ++ < 140)
scrollText = " " + scrollText;
function Scroller()
{
window.status = scrollText.substring(scrollCounter++,
scrollText.length);
if (scrollCounter == scrollText.length)
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);
}
Scroller();
// End of scroller script -->
</SCRIPT>
Updated January 16, 2007
SofinesJoyfulMoments Is Hosted by FatCow