SetPrompt

Item Description

Use with:

Startup scripts, Terminal Launcher, Web, and Windows

SecureLogin version:

All

Type:

Action

Usage:

SetPrompt prompt-text

Arguments:

prompt-text

The customized text prompt to be displayed in the Enter SecureLogin Variables dialog box.

Description:

Customizes the text in the Enter SecureLogin Variables dialog boxes that are used to prompt the user for new variables. You can also use the DisplayVariables command to customize the prompt text in the dialog box.

Example 1:

The following line illustrates the default text prompt in the Enter SecureLogin Variables dialog box:

Please enter the following Single Sign-on variables

To replace this default text prompt, place the SetPrompt command at the bottom of the script. The following lines illustrate this position:

type $Username 
type $Password Password
setprompt "Enter your username and password"

Example 2:

To replace the text prompt next to any variable entry field in the Enter SecureLogin Variables dialog box, place the SetPrompt command immediately before the variable in the script.

Setprompt "Enter your username" 
Type $Username
Setprompt "Enter your password"
Type $Password password
Setprompt "Enter your username and password"