ICP DAS USA ISaGRAF WinCE ViewPAC User Manual page 84

Table of Contents

Advertisement

Now please go to the "head" area
In the "head" area, please modify the sample code to be as below.
// variable to record object's blink state, 0:not blink, 1: blink, For example:
// *********************************
var B12_blink=0; // init as 0:not blink
// *********************************
// function to blink object
var blink_step=0;
function blink_obj()
{
if(blink_step==1)
{
blink_step=0;
// display your object here
// blink B12, For example:
// *********************************
if(B12_blink==1)
{
B12.innerText="Error !" ;
font_B12.color="red";
}
// *********************************
}
else
{
blink_step=1;
// un-display your object here
// blink B12, For example:
// *********************************
if(B12_blink==1)
{
B12.innerText="" ;
font_B12.color="red";
}
// *********************************
}
setTimeout("blink_obj()", blink_period);
}
4-34
The "Error !" symbol will blink when the K2 = True
in this example. Please un-mask the code inside
these 3 areas.
ISaGRAF WinCE ViewPAC User Manual , V.1.6 , 1/2017 by ICP DAS

Advertisement

Table of Contents
loading

This manual is also suitable for:

Vp-25w7Vp-23w7Vp-4137Vp-25w6Vp-23w6Vp-4136

Table of Contents