Hi there
I have a ISDN system setup (D/600 JCT) and all is working well.
When an inbound call arrives, the call is answered immediately.
Is it possible to have system ring say 4 times, and then hangup (without actually answering the call).
Ive seen scripts like....
----
set vg = CreateObject("VoiceGuide.CommandLink")
iRingCount = 0 iWaitCount = 0 sReturnValue = "Fail"
do while (iWaitCount < 30)
iRingCount = vg.RvGet($RV_LINEID, "RV_RINGCOUNT") if iRingCount >= 4 then sReturnValue = "Success" Exit Do end if WScript.Sleep(1000) iWaitCount = iWaitCount + 1 loop
vg.Run_ResultReturn $RV_LINEID, sReturnValue
set vg = Nothing
----
But I cant seem to get it to work.
All I want from the call is the CallerID, Date/Time etc, and because the call is not answered, its cheaper!!!!
Thanks
Lee