hey guys is it possible to have scrolling text on status bar with a specify color? for example i have this code on my page the default text is black. but how do i change the text color? me don't know about javascript hehe
<Script LANGUAGE="JavaScript">
var Count = 3;
var Text = " ** Type your personalized message here! And you are set.";
var Speed = 60;
var timerID = null;
var TimerRunning = false;
The answer to your question is no, you cannot alter the colour of the text in the status bar.
For the rest,
var i = 0;
while (i ++ < 140)
Text = " " + Text;
adds 140 spaces before the start of the message so as to approximately centre it in the screen. You may want to adjust 140 depending on the actual length of your own message.
"Instead of using 'Start();' to run the script you should use
window.onload=Start; or <body onload="Start()">" Both of these are simply alternative ways of calling the script.