Customer Login (Online) About Platypus Partners (Online) Products and Services (Online) Support (Online) http://www.platypuspartners.com www.platypuspartners.com
Scripting - Script files
- JET 6530 Documentation / Scripting / Files

Script files

Structure of script files

Script files are plain text using the ISO-8859-1 character set. A carriage return line feed sequence (CR LF), plain carriage return (CR) and plain line feed (LF) are all accepted as line breaks. In normal text files Windows uses CR LF for line breaks and Unix uses LF, so text files created in either environment can be used as scripts. A script is a series of commands that are executed in the order they appear. Commands are terminated by line breaks. Sequences of one or more spaces and horizontal tabs are white space and separate the commands and their parameters. Keywords are recognised in upper, lower and mixed case.

Commands

delay period

Pause for period seconds before executing the next command.period is a number greater than or equal to zero.

send keys [ timeout period]

Send the keys specified by keys to the host. If the keyboard is locked the script will wait for it to unlock, unless the key to be sent can normally be sent when the keyboard is locked. If after period seconds since the send command started the keys have not been sent and the keyboard is locked then the script fails. keys is a string literal. period is a number greater than or equal to zero.

waitfor text [ timeout period]

Wait for text to be received from the host. If after period seconds text has not been received then the script fails. textis a string literal. period is a number greater than or equal to zero.

set keyboard {on | off}

Enables or disables user keyboard input. By default user keyboard input is disabled while a script is running.

String literals

String literals start with a double quote character (") and end with either another double quote character, end of line or end of file. The following escapes can be used in string literals:

Escape Meaning
\a Bell
\b Backspace
\n Line Feed
\r Carriage Return
\t Horizontal Tab
\ooo Character whose encoding is ooo, where ooo is an octal value between 000 and 377
\x The character x, where x is not one of the recognised escape characters above
\\ Backslash
\" Double Quote

The waitfor command's text parameter and the send command's keysparameter are string literals. Note that the special meaning of the left square bracket ([) when used in the send command's keys parameter cannot be avoided by preceding it with a backslash (\).

Numbers

Numbers are a sequence of decimal digits (0 to 9) and optionally one full stop (.), which may be preceded by a minus sign (-). For example, the following are valid numbers:

  • -3.85
  • 128
  • .001
  • -.68

The period parameter of the delay, send and waitfor commands is a number.

Comments

The number sign (#) indicates a comment. The number sign and everything after it on that line are ignored.

JET 6530 keys

6530 keys corresponding to graphic characters are represented by the graphic character, except for left square brackets (see below). 6530 keys that are not graphic characters are represented by a key name enclosed in square brackets ([ and ]). The key names can be in upper, lower or mixed case. The following key names are allowed:

  • back_tab
  • backspace
  • break
  • ctrl_a
  • ctrl_at
  • ctrl_b
  • ctrl_c
  • ctrl_circumflex
  • ctrl_d
  • ctrl_e
  • ctrl_f
  • ctrl_g
  • ctrl_h
  • ctrl_home
  • ctrl_i
  • ctrl_j
  • ctrl_k
  • ctrl_l
  • ctrl_left_square_bracket
  • ctrl_low_line
  • ctrl_m
  • ctrl_n
  • ctrl_next_page
  • ctrl_o
  • ctrl_p
  • ctrl_prev_page
  • ctrl_q
  • ctrl_r
  • ctrl_return
  • ctrl_reverse_solidus
  • ctrl_right_square_bracket
  • ctrl_s
  • ctrl_shift_tab_set
  • ctrl_t
  • ctrl_u
  • ctrl_v
  • ctrl_w
  • ctrl_x
  • ctrl_y
  • ctrl_z
  • cursor_down
  • cursor_left
  • cursor_right
  • cursor_up
  • del
  • delete_char
  • delete_line
  • disconnect
  • erase_line
  • erase_page
  • esc
  • f1
  • f2
  • f3
  • f4
  • f5
  • f6
  • f7
  • f8
  • f9
  • f10
  • f11
  • f12
  • f13
  • f14
  • f15
  • f16
  • home
  • insert_char
  • insert_line
  • next_page
  • prev_page
  • reconnect
  • reset
  • return
  • roll_down
  • roll_up
  • shift_f1
  • shift_f2
  • shift_f3
  • shift_f4
  • shift_f5
  • shift_f6
  • shift_f7
  • shift_f8
  • shift_f9
  • shift_f10
  • shift_f11
  • shift_f12
  • shift_f13
  • shift_f14
  • shift_f15
  • shift_f16
  • shift_home
  • shift_insert_char
  • shift_next_page
  • shift_prev_page
  • shift_return
  • shift_roll_down
  • shift_roll_up
  • tab_clear
  • tab_numeric
  • tab_set
  • tab_typewriter

The left square bracket key is represented by two left square bracket characters ([[). Note that a left square bracket preceded by a backslash (\[) does not represent the left square bracket key, it marks the start of a key name, the same as a left square bracket without a backslash.

If a key name is not valid then the script fails.

The JET 6530 keys that can be sent when the keyboard is locked are:

break reset disconnect

Note that clipboard manipulation keys (clear_selection, copy, cut, paste) cannot be sent.

Host data

Data received from the host is filtered to remove everything except graphic characters before being compared against the text of the waitfor command.

Script storage and references

Scripts are text files on either the local file system or a web server and are referenced by file: or http: URLs. The MIME type of a script must be text/plain. Usually the browser will recognise the MIME type of a file: URL as text/plain if the file name ends in ".txt". Most web servers are configured to return a MIME type of text/plain with files whose names have a ".txt" suffix.

For example, the following http: URL could be a script on a web server:

http://www.platypuspartners.com/scripts/logon.txt

The following file: URL could be a script on the hard drive of a Windows machine:

file:/C:/jetscript/auto.txt

The following file: URL could be a script on the file system of a Unix machine:

file:/home/jsmith/jetscript/auto.txt

JET 6530 does not provide tools for creating scripts. A text file editor such as Notepad under Windows or vi or emacs under Unix can be used to create scripts.

Current Release
JET 6530 7.0A

Scripting
Scripting Introduction
Script Files
Logon Script
Script Keys
Recording/Generating Scripts
Stopping a script
Advanced

Documentation - JET 6530
Table of Contents
System Requirements
Installation
Upgrading
Removal
Configuration
Settings and Preferences
Scripting
Troubleshooting
Reference
How To Guide

Quick Links

Contact Us

sales@
platypuspartners.com


About Us
| Products | Support | Contact Us


Java and all Java-based trademarks and logos are trademarks or registered trademarks of
Sun Microsystems, Inc. in the United States and other countries.