CC pulse Thresholds

hi..

how do i create a threshold for SDNA = after call work

0-90 seconds - colour green
91-299 secsonds - colour yellow
300 seconds and over - colour red

Search forum please

Enviado de meu C6602 usando Tapatalk

Hi,

Use following Query to create threshold for ACW, where you can change values as per your request against 0 & 60

if Threshold.StatValue > 0 and Threshold.StatValue < 60 then
Threshold.Result = true
else
Threshold.Result = false
end if

and for color kindly user following query to create Action Wizard

’ Available colors
'==============
'Blue, Green, Red, White, Black, Gray, DarkGray, DarkRed,
'Yellow, DarkYellow, DarkGreen, Cyan, DarkCyan, DarkBlue,
'Magenta, DarkMagenta.

'All accessed as Color.colorname

’ Set a predefined color:
CCPulseNotifier.SetColor( Color.Red )

’ Or…

'2. Set a custom color:
’ CCPulseNotifier.SetColor( RGB( 7, 77, 177 ) )