" /> VB CODE TO MAKE CELLS FLASH IN CC PULSE - Genesys CTI User Forum

Author Topic: VB CODE TO MAKE CELLS FLASH IN CC PULSE  (Read 4391 times)

Offline Ghost

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
VB CODE TO MAKE CELLS FLASH IN CC PULSE
« on: July 18, 2011, 02:51:48 PM »
Advertisement
Hi

Does anyone have the VB code required to make the cells flash in CC PUlse when thresholds are reached?  Would be very grateful if you could let me have a copy  ;D

Offline Tambo

  • Sr. Member
  • ****
  • Posts: 456
  • Karma: 5
Re: VB CODE TO MAKE CELLS FLASH IN CC PULSE
« Reply #1 on: July 22, 2011, 10:49:25 AM »


why does it need to flash ??? is bright red not visible enough for when thresholds are breached?  ???

Offline Ghost

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
Re: VB CODE TO MAKE CELLS FLASH IN CC PULSE
« Reply #2 on: July 22, 2011, 10:51:23 AM »

I thought that bright red would be enough, although this is one of the many strange requests I get?  I know it is possible will have to take time away and design something I think.  Cheers

Offline Tambo

  • Sr. Member
  • ****
  • Posts: 456
  • Karma: 5
Re: VB CODE TO MAKE CELLS FLASH IN CC PULSE
« Reply #3 on: July 22, 2011, 02:28:33 PM »
I made the rookie mistake of mentioning the flashing colours and have been asked to look into it too  :-[

If I come up with something i'll post it, if you come up with something can you?

Offline Ghost

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
Re: VB CODE TO MAKE CELLS FLASH IN CC PULSE
« Reply #4 on: July 22, 2011, 02:45:53 PM »
;D will do  ;D

Offline toby

  • Newbie
  • *
  • Posts: 2
  • Karma: 0
Re: VB CODE TO MAKE CELLS FLASH IN CC PULSE
« Reply #5 on: July 31, 2011, 04:51:59 AM »
This is not a clean blink and you would need to modify it to suit the selected metric to make sure the 3 seconds works well with your update frequency etc. but, its a rough idea if you are desperate enough for it.

[font=courier]if Threshold.StatValue = StatAction.SDNALoggedOut then
    if Second(Now()) Mod 3 > 0 then
        Threshold.Result = true
    else
        Threshold.Result = false
    end if
end if[/font]

Offline Anth

  • Newbie
  • *
  • Posts: 28
  • Karma: 1
Re: VB CODE TO MAKE CELLS FLASH IN CC PULSE
« Reply #6 on: August 01, 2011, 07:23:04 AM »
cool,

ill have a play with that one today

Offline Ghost

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
Re: VB CODE TO MAKE CELLS FLASH IN CC PULSE
« Reply #7 on: August 01, 2011, 08:04:54 AM »
Cool, thanks for that will have a go later today  ;D ;D