FP: How to Create a Scrolling Message in Browser's Status BarLast reviewed: March 18, 1998Article ID: Q167596 |
The information in this article applies to:
SUMMARYThis articles provides two sample FrontPage Java scripts that display a custom, scrolling message in the Internet Explorer status bar.
MORE INFORMATIONWARNING: ANY USE BY YOU OF THE JAVA SCRIPT PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this script "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. This script is provided 'as is' and Microsoft does not guarantee that the following script can be used in all situations. Microsoft does not support modifications of the script to suit customer requirements for a particular purpose.
Example 1NOTE: Before you insert this code using the FrontPage 97 Editor, remove the following items:
<SCRIPT> <!-- </SCRIPT> //-->Insert the following script into your normal HTML Web page:
<SCRIPT LANGUAGE="JavaScript"> <!-- // Scrolling text string. var scrollString = "Replace this string with your text." // Width of the scrolling area. var width = 120; var stringLength = scrollString.length; var pos = 1 - width; // Start far enough to the left so that only one letter shows. function ScrollMessage(){ var ScrollMessage = ""; // Initialize the string to be printed. pos++; // Move to the right in the string. if (pos == stringLength) // Start over if the string is done. pos = 1 - width; // Scrolling if (pos<0) { // Add spaces to beginning if necessary. for (var i=1; i<=Math.abs(pos); i++) ScrollMessage = ScrollMessage + " "; ScrollMessage = ScrollMessage; + scrollString.substring(0, width; - i + 1); } else ScrollMessage = ScrollMessage; + scrollString.substring(pos, pos +; width); window.status = ScrollMessage; // Print the string. setTimeout("ScrollMessage()",100); // Repeat after 1/10 second. } //--> </SCRIPT>In order for the message to function, modify the <BODY> tag so that it looks like this:
<BODY OnLoad="ScrollMessage()"> Example 2To add a Java Script to a FrontPage Web page, use these steps:
|
Additional query words: 97
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |