Guest u4910 Report post Posted 02/25/2009 03:57 AM I'm trying to call a vgs from a module: "on {9} goto [internetPortal.vgs]" but it keeps saying not found. Did I do this wrong? It is in the same directory as the current vgs. I also tried a fully qualified file name with drive and path with same error. Thanks. 223950.640 6 1 FindNextVgmTitleInPathList: next module title is=[internetPortal.vgs] 223950.640 6 1 HangupCall, source=module [internetPortal.vgs] not found, WorkModeScript=, yLineStateAppPov=[Connected] 223950.640 6 1 state Hanging up... [module [internetPortal.vgs] not found] 223950.640 6 1 rv add [Hangup Source]{module [internetPortal.vgs] not found} 223950.640 6 1 tqTel que cmd_PlayStop [0,0,0,0,0][|||| Share this post Link to post
SupportTeam Report post Posted 02/25/2009 04:17 AM Try: on {9} goto [internetPortal.vgs|] From http://www.voiceguide.com/vghelp/source/html/paths.htm : If "|" is omitted from the destination specification then the destination name is assumed to be just a module in the current script. So for example this path will not work: on {1} gosub [c:\scripts\myscript.vgs] Share this post Link to post
Guest u4910 Report post Posted 02/25/2009 05:06 AM Thanks. Adding a | at the end of the script name did the trick. Share this post Link to post