Script File Examples


(Contents)(Previous)(Next)

Legal (this script combines two commands on the last line):

label START;

send

"HELLO";

send "GOODBYE"; send "HELLO AGAIN";

Illegal (second line lacks a semicolon):

send "BAD"; send "SCRIPT";

delay 1000

send "NEED A ; ON THE PREVIOUS LINE !";


(Contents)(Previous)(Next)