


Format:
delay nnnn;
This command causes a delay of nnnn milliseconds (1000 milliseconds = 1 second). After the delay, the script file continues executing.
Example:
// This script sends the string "Jim", waits
// one second and then sends the string "Smith".
label START;
send "Jim";
// Delay 1 second
delay 1000;
send "Smith";
end;


