Window Browser JavaScript DHTML



Scrolling Text

var scrollPos = 0
var maxScroll = 100
var blanks = ""
function scrollText(text, milliseconds) {
   window.setInterval("displayText('"+text+"')", milliseconds)
}
function displayText(text) {
     window.defaultStatus = blanks + text
     ++scrollPos
     blanks += " "
     if(scrollPos > maxScroll) {
        scrollPos = 0
        blanks = ""
     }
}



Watch the text scroll at the bottom of this window!