Guest Tom Storey Report post Posted 05/10/2006 01:09 PM If I build a Run VBScript with the following it works great: set vg = CreateObject("VoiceGuide.CommandLink") vg.Play_Start $RV_LINEID, "Sound Files\Too Many Tries.wav" Set vg = Nothing But if I build the following, the sound file does not play: set vg = CreateObject("VoiceGuide.CommandLink") vg.Play_Start $RV_LINEID, "Sound Files\Too Many Tries.wav" vg.Run_ResultReturn $RV_LINEID, "[iD Count] {1}" Set vg = Nothing Why? Share this post Link to post
SupportTeam Report post Posted 05/10/2006 01:19 PM Which version of VoiceGuide are you using? Could you please post a copy of VoiceGuide's Debug Printout which captures the problem, this will allow us to see what happened. When running the script click on VoiceGuide's View menu and select 'Event Trace Log' option - any log information will then appear in this window. You must open the trace window before making the call. You can enable the automatic saving of the logs to files in \log\ directory as well. When posting traces/scripts please .ZIP them up and post them as attachments. Share this post Link to post
Guest Tom Storey Report post Posted 05/10/2006 05:10 PM Here is the VoiceGuide's Debug zip. 0510vgm.zip Share this post Link to post
SupportTeam Report post Posted 05/12/2006 01:24 AM The VBScript module is set to "Wait till VBScript completes". It should be set to "Wait till VBScript and sound file completes". Share this post Link to post