|
|
 |
RE: FN-FORUM: status bar text
date posted 18th May 2007 12:22
Hi
I think you can stop it looping if you change the wiper function like this:
function wiper()
{
if (stcnt -1) str = wmsg[stcnt]; else str = wmsg[0];
if (stcnt-- < -40) stcnt=31;
status = str;
clearTimeout(timeID);
timeID = setTimeout("wiper()",100);
}
}
Incidentally, this mentions nothing about missing children, bad parents or
journalism so slightly of topic!!
-----Original Message-----
From: [EMAIL REMOVED] [EMAIL REMOVED] On Behalf Of Claire
Sent: 18 May 2007 11:37
To: FN-FORUM / [EMAIL REMOVED]
Subject: FN-FORUM: status bar text
Hi all,
I am trying to use some code I found on javascriptkit to display text on
the status bar. It animates slowly and then stops which is perfect.
But it then loops. I don't understand the code to work out how to stop
it from looping. Does anyone know how to do this with the below piece of
code please?
I will be eternally grateful!
Claire.
--
Freelancers, contractors earn more with Prosperity4
Call 0870 870 4414 or visit www.prosperity4.com
and benefit from Inland Revenue approved expenses today.
To advertise here: http://www.freelancers.net/advertising.html
|
 |
|