invoso.com Report post Posted 11/30/2012 10:46 AM 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
SupportTeam Report post Posted 11/30/2012 10:51 AM 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