VoiceGuide IVR Software Main Page
Jump to content

Stopping Moh In Any Play Module

Recommended Posts

Some versions ago VG stopped MoH when play module was used.

 

1. Now this functionality is unavailable. I have to set DoNotStopMOH=0 and then vg.Play_Stop $RV_LINEID to can play message in PLAY or other modules witch play prompts.

 

Please return functionality, that make DoNotStopMOH=0 and then vg.Play_Stop $RV_LINEID active.

 

 

2. Other way: How to set $RV[DoNotStopMOH]=0 in VBS module?

 

set vg = CreateObject("vgServices.CommandLink")

vg.Play_Stop $RV_LINEID

set vg = Nothing

 

to use one step instead two.

Share this post


Link to post
How to set $RV[DoNotStopMOH]=0 in VBS module?

 

You can try doing this:

 

set vg = CreateObject("vgServices.CommandLink")
vg.RvSet $RV_LINEID, "DoNotStopMOH", "0"
vg.Play_Stop $RV_LINEID
set vg = Nothing

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×