I'm lost,
How can I make this formula work on with the just the
symbol "TICK.Z" ?
Tickplus800 = H>800;
Tickminus800 =
L<-800;
Tickplus1000 = H>1000;
Tickminus1000 =
L<-1000;
AlertIf( Tickplus800,
"SOUND
C:\\Windows\\Media\\TSsounds\\+800ticks.wav", "+800
Ticks",1+8 );
AlertIf( Tickminus800,
"SOUND
C:\\Windows\\Media\\TSsounds\\-800ticks.wav", "+800
Ticks",1+8);
AlertIf( Tickplus1000,
"SOUND
C:\\Windows\\Media\\TSsounds\\+1000ticks.wav", "+1000
Ticks",1+8 );
AlertIf( Tickminus1000,
"SOUND
C:\\Windows\\Media\\TSsounds\\-1000ticks.wav", "+1000
Ticks",1+8 );
Thanks for the help, Randy