invoso.com Report post Posted 02/29/2012 12:25 PM One more case. I set VBS module: set vg = CreateObject("vgServices.CommandLink") vg.Play_Start $RV_LINEID, "IpOnHold_Long.wav" set vg = Nothing and next is another VBS module. VG starting play MoH declared in first module in next VGS module playing MoH declared in second module. After deleting MoH in second module on hold is silence. I want to play MoH during all elements I use until I declare stop MoH or next module have own MoH or module play own prompt (like PLAY, GET NUMBERS, SAY NUMBERS) If is not declared other prompt to play MoH should be played continuously. And one more functionality: we need loop or multifile option for MoH. Can we declare few prompt files in chain in MoH form or VBS like: vg.Play_Start $RV_LINEID, "IpOnHold_Long.wav, IpOnHold_Long.wav, IpOnHold_Long.wav" ? Share this post Link to post
invoso.com Report post Posted 02/29/2012 03:47 PM I found that MoH used in VBS set vg = CreateObject("vgServices.CommandLink") vg.Play_Start $RV_LINEID, "moh.wav" set vg = Nothing blocking voice prompt in GET NUMBERS MODULE. Share this post Link to post
SupportTeam Report post Posted 03/01/2012 07:04 AM VG starting play MoH declared in first module in next VGS module playing MoH declared in second module. Please post the script (or excerpt of) demonstrating the problem and the vgEngine and ktTel traces which capture the system executing the script (or excerpt of). Can we declare few prompt files in chain in MoH form or VBS like: vg.Play_Start $RV_LINEID, "IpOnHold_Long.wav, IpOnHold_Long.wav, IpOnHold_Long.wav" ? Yes. That multiple sound files can be specified. Share this post Link to post
SupportTeam Report post Posted 03/01/2012 07:18 AM Are you setting Result variable DoNotStopMOH (ie: $RV[DoNotStopMOH] ) to 1 before starting the VBScript module? Are you setting it back to 0 after last module through which you want the Message On Hold (MoH) to play? To stop playing you can also issue the Play_Stop API command. This will stop the playing even when $RV[DoNotStopMOH] is set to 1. Share this post Link to post
invoso.com Report post Posted 03/01/2012 01:33 PM I solved problem adding VBS module included set vg = CreateObject("vgServices.CommandLink") vg.Play_Stop $RV_LINEID set vg = Nothing but it isn't satisfied solution. I think that any module with own prompt should include "vg.Play_Stop" I attached example of script. MOH case.vgs Share this post Link to post
invoso.com Report post Posted 03/07/2012 07:13 AM Hi, is any chance to solve this problem as I suggested? Share this post Link to post