Include

Item Description

Use with:

Startup scripts, Terminal Launcher, Web, and Windows

SecureLogin version:

3.0 and later

Type:

Flow Control

Usage:

Include [platform-name]

Arguments:

[platform-name]

The name of the script to be included..

Description:

Allows commonly-used application script code to be shared by multiple applications. The script identified by platform-name is included at execution time into the calling application script. The application type selected for the script to be included should be compatible with the calling script's application type.

Syntax examples:

Include HelloLib

Example:

## "notepad.exe" application script 
Include HelloLib
Dialog 
Title "Untitled - Notepad"
EndDialog
 Type abc
 Call printHelloMsg
Dialog 
 Title "Notepad"
 Ctrl #6
EndDialog
 Call printGoodbye
 Click #7#"HelloLib" platform script
Sub printHelloMsg
 MessageBox "Hello Message"
EndSub
Sub printGoodbye 
 MessageBox "Goodbye"
EndSub