MOVE
Format: MOVE (expr1, expr2) expr3
Supported by: Telmac SBASIC v 24.3
Similar commands:
COMX BASIC V1.00: CPOS
Pecom 64 BASIC 1.0 and 4.0: CPOS
This statement is a combination of the Pecom 64 BASIC 1.0 and 4.0 and COMX BASIC V1.00 CPOS and the PRINT command. The MOVE command directs the cursor to a position in the screen specified by the two expressions in bracket. The first specifies the column position (0 to 39) and the second, the row position (0 to 23) of the cursor. After the cursor has been moved the optional expr3 is printed at the cursor position. For example
10 MOVE (12, 11) "THIS IS A TEST"
RUN
will print the message at the centre of the screen.