I got it to flash, but if I want it to flash Red, and background color what do I change in the code? I did this:
<!--
<!-- blink navbar on new pms -->
pmBox.bgColor='thead_bgcolor';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
pmBox.bgColor='$stylevar[red]';
x=1;
set=0;
}
if (x==1 && set==1)
{
pmBox.bgColor='$stylevar[thead_bgcolor]';
x=0;
set=0;
}
}
but it still flashes dark grey and light grey.
Quote:
nothing else is done. Now, I hate the error java script message. By the way, does this work for vb3.0.7?
|
Yes I have it working on 3.0.7 Just not the color I want.