|
setTermPos
|
|
|
|
|
|
| X0, Y0
|
|
|
| Positive integers specifying the screen coordinates of the top left corner of the Terminal window.
|
| Sx, Sy
|
|
|
| Optional positive integers specifying the new width and height of the Terminal window. If these parameters are omitted, the window will maintain its current size.
|
|
|
| ERR_OK
|
|
|
| The flag set if successful.
|
|
|
| ERR_FAILED
|
|
|
| The flag set if failed.
|
|
|
| This set of statements opens the Terminal window and moves it across the screen:
|
|
|
| Print ("Moving the Terminal window")
|
| For J=0 To getWorkHeight()-200 Step 8
|
| For I=0 To getWorkWidth()-200 Step 8
|
| wait(50)
|
| setTermPos(I,J)
|
| Next
|
| For I=800-200 To 0 Step -8
|
| wait(50)
|
| setTermPos(I,J+4)
|
| Next
|
| Next
|