Add Scrolling message to the site status bar

Moderator: Lixas

Locked
znad
Posts: 250
Joined: Sat Oct 01, 2005 3:12 pm

Add Scrolling message to the site status bar

Post by znad »

Add Scrolling message to the site status bar
Place this script up above the HTML code..


Code: Select all

<script language="JavaScript" type="text/javascript">
<!--
//Thank you 4 using this script.

// You may edit the message below.

var startMsg = "Welcome to www.mobile-addict.com";

var str = "";
var msg = "";
var leftMsg = "";


function setMessage()
{
if (msg == "")
{
str = " ";
msg = startMsg;
leftMsg = "";
}

if (str.length == 1)
{
while (msg.substring(0, 1) == " ")
{
leftMsg = leftMsg + str;
str = msg.substring(0, 1);
msg = msg.substring(1, msg.length);
}

leftMsg = leftMsg + str;
str = msg.substring(0, 1);
msg = msg.substring(1, msg.length);

for (var ii = 0; ii < 120; ii++)
{
str = " " + str;
}
}
else
str = str.substring(10, str.length);

window.status = leftMsg + str;
// This editable value (1000 = 9 second)
// corresponds to the speed of the shooting
// message.
timeout = window.setTimeout('setMessage()',100);

}
// -->





<BODY bgcolor="#FFFFFF" onload="timeout = window.setTimeout('setMessage()',500);">


boyvnca
Posts: 170
Joined: Mon Mar 13, 2006 10:46 pm

Post by boyvnca »

where i put that to a forum?
Locked