PDA

View Full Version : Call script from a script



gs_zen
11-16-2009, 05:48 PM
So, this is probably a real basic question...

How would you go about calling another script to execute from within a script?

I tried put ';newscript' and fput ';newscrip' and neither method seemed to work.

Thanks,
Zen

pabstblueribbon
11-16-2009, 05:50 PM
start_script 'newscript'

Alorn15
11-16-2009, 06:58 PM
You may also find wait_while { running?("newscript") } to be handy.

gs_zen
11-16-2009, 09:53 PM
Perfect! Thanks!