Scrolling Text in the Status Window : StatusBar « Window Browser « JavaScript DHTML






Scrolling Text in the Status Window

<html>
<head>
<title>Scrolling Text</title>
<script language="JavaScript">
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 = ""
     }
}
</script>
</head>
<body onload="scrollText('Watch this text scroll!!!', 300)">
<p>Watch the text scroll at the bottom of this window!</p>
</body>
</html>

           
       








Related examples in the same category

1.Date in the status bar
2.Displays the time in the status line
3.Write text to the window's status bar
4.Using the self Property in status bar
5.Setting the Default Status Message
6.Links with Custom Statusbar Messages
7.Handling Status Message Changes
8.JavaScript display infomation in Status Bar
9.Working with Status Bar Messages
10.Using Status Messages
11.The onFocus event Handler
12. Creating a Scrolling Banner in status bar