Delay

Item Description

Use with:

Startup scripts, Terminal Launcher, Web, and Windows

SecureLogin version:

All

Type:

Action

Usage:

Delay period-of-time

Arguments:

period

A period of time, expressed in milliseconds, to pause execution of the script.

Description:

Delays the action of the script for the time specified in the period argument. For example, Delay 5000 creates a 5-second pause.

Use the Delay command to accommodate an introduction screen or some other custom feature. When troubleshooting new scripts, add Delay to the script as a first course of action.

Example:

Dialog  
 Title "Login"
 Ctrl #1
EndDialog
Delay 500
Type $Username #1
Type $Password #2
Click #1