
James
Troll
Apr 19, 2001, 8:37 PM
Post #3 of 8
(20396 views)
|
Re: Help not sure what it is called
[In reply to]
|
Can't Post
|
|
I imagine there are lots of alternatives, but here's one. Put it inside of your <HEAD></HEAD> tags:
<script language="JavaScript"> msg = " text to scroll" pos = 0; function ScrollMessage() { window.status = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++; if (pos > msg.length) pos = 0; window.setTimeout("ScrollMessage()",100); } ScrollMessage(); </script> No guarantees on this one ... I just found it on the web. (And yes, the script I found was missing the ";" after the msg line.)
|