Quote:
Originally posted by Ryan McBain
Code:
$pmblink pmBox.bgColor='#006633';
$pmblink setInterval("Timer()", 500);
$pmblink x=1;
function Timer() {
set=1;
if(x==0 && set==1) {
pmBox.bgColor='#778899';
x=1;
set=0;
}
if(x==1 && set==1) {
pmBox.bgColor='#2D3851';
x=0;
set=0;
|
I'm not certain because all your replacement variables got parsed, but you have three colors there. The first color should be your alternating flashing color. The second one should be your category background color and the third color should be the alternating flashing color again. You may have it right already. It just looks wrong here.