home *** CD-ROM | disk | FTP | other *** search
- /* MOVE A CHARACTER */
- /* Copyright 1993 Soft-Logik Publishing Corporation */
- /* May not be distributed without Soft-Logik Publishing Corporation's express written permission */
- /* $VER: 2.0 */
-
- ADDRESS 'TYPESMITH'
- OPTIONS RESULTS
- TRACE OFF
-
- /* Screen to front */
- to_front
-
- /* get the move amounts */
-
- get_string 'Move character horizontally: |Continue|Exit'
- IF RC=5 THEN EXIT
- movex=RESULT
- get_string 'Move character vertically: |Continue|Exit'
- IF RC=5 THEN EXIT
- movey=RESULT
-
- select_all
-
- MOVE movex movey
-
- /* SHORT AND SWEET! */
-