# Send GEMScript commands to a program
# * Written by: John Rojewski
# * Date: 12/08/98

# Internal commands supported
 no_alert();
 pause(nnn);
 set_delay_time(nnn);
 waitfor(on) or (off);
 log(on) or (off);	NEW
 exec(scriptfile);	NEW

# Additional command formats
 var=prog.command(parm1,parm2,...);
 var=any text;

# Error messages displayed
 "John's Script|Version: 0.2|December, 1998" 
 "Unable to open script file!" 
 "Unknown command" 
 "Invalid Parameter"
 "Unknown/Undefined Application" 
 "Invalid format"
 "Unable to open INF file!"
 "Unable to allocate GS_INFO"
 "Application not running" 
 "App rejected GEMScript request" 
 "App ignored GEMScript request"
 "Command not executed"
 "Application not found in path" 
 "Unable to allocate Command" 
 "Command exceeds 19 parameters" 

#Defaults
	parm.alerts=1;		/* default is on */
	parm.pause=1000;	/* default is 1 second */
	parm.delay=1000;	/* default is 10 seconds */
	parm.wait=0;		/* default is off */
	parm.log=0;			/* default is off */

# end of script.txt