Guest fmonroy Report post Posted 01/11/2008 12:30 AM VG 5.2.5049 Hello guys, is there a way to switch between several scripts from another? I have several scripts that do a function each, so I need to create another script as a main menu to choose what script to run. Any idea? Thanks in advance. FM Share this post Link to post
SupportTeam Report post Posted 01/11/2008 12:41 AM Just specify the script's filename in the path to be taken. From: http://www.voiceguide.com/vghelp/source/html/paths.htm : Branching to other scripts and calling subscrips. The Enterprise and Evaluation versions of VoiceGuide can call subscripts. To branch (goto) to a script you can specify a path like this: on {event} goto [script filename|module name] eg: on {1} goto [c:\scripts\myscript.vgs|PlayWelcome] To run a subscript (gosub) to a script you can specify a path: on {event} gosub [script filename|module name] eg: on {1} gosub [c:\scripts\myscript.vgs|PlayWelcome] Share this post Link to post
Guest fmonroy Report post Posted 01/11/2008 12:44 AM Oops, didn't read that part of the help. It's great. Thanks a lot. FM Share this post Link to post