SetCursorPosition |
Top Previous Next |
The following commands have been implemented in EMUEScript exactly as they are implemented in OLIE™:
Syntax - SetCursorPosition <row> <column> Where: <row> is an integer <column> is an integer
Description: This command is used to send the cursor to a position on the screen defined by <Row Variable> and <Column Variable>. This command can be used to set the cursor position before sending keystrokes.
This command can be built with an option in the context menu on the terminal screen. By selecting the "Insert SetCursorPosition Command" option from the context (right-click) menu, a SetCursorPosition command will be built based on the current terminal cursor position and will be inserted into the editor where the editor cursor is.
Sample: The following statement uses the SetCursorPosition command to place the cursor at position 20 15 and then erase the contents of the field. SetCursorPosition 20 15 Send s "[ERASE]"
|