Ferret32 Super Finder Want to view and find data, search your own Netscape Bookmarks, or just multi-thread search the Web? You can't beat Ferret 32!
Organize your life, store and find anything about everything one simple tool!

Salkow Territory JAVA SCRIPT EXAMPLES

SCROLLING MESSAGE BAR

(This script is running below)


<script LANGUAGE="JavaScript">
<!--// Scrolling message settings
var MessageText = "Thank you for visiting Our Web Site.  We deliver superior service and support.
 Please select a desination from the menu bar.";

var DisplayLength = 130
var pos = 1 - DisplayLength;
function ScrollInStatusBar(){
var scroll = "";
pos++;
if (pos == MessageText.length) pos = 1 - DisplayLength;
if (pos<0)
{for (var i=1; i<=Math.abs(pos); i++)
scroll = scroll + " ";
scroll = scroll + MessageText.substring(0, DisplayLength - i + 1);}
else
scroll = scroll + MessageText.substring(pos, pos + DisplayLength);
window.status = scroll;
//Scrolling speed
setTimeout("ScrollInStatusBar()",50);}
ScrollInStatusBar()
//-->
</script>



From http://www.computerhope.com/onmouse.htm

HTML
ON-LINE HELP
VIRUS INFO
Jargon
Internet Info

Go to this page for explaination of the Mouseover Code