Difference between revisions of "Term.setCursorPos"
From ComputerCraft Wiki
m (moved Term.setCursorPos() to Term.setCursorPos) |
|
(No difference)
| |
Revision as of 20:43, 7 July 2012
| Sets the location of the cursor on screen. | |
| Syntax | term.setCursorPos(int x, int y) |
| Returns | none |
| Part of | ComputerCraft |
| API | term |
Examples
Basic usage
| Sets the location of the cursor on screen to the top | |
| Code |
term.setCursorPos(1,1) |
Using the old cursor position to effect the new one
| Sets the location of the cursor to the start of the line. | |
| Code |
oldx, oldy = term.getCursorPos() |