Difference between revisions of "Term.setCursorBlink"
From ComputerCraft Wiki
(Created page with "{{lowercase}} {{Function |name=term.setCursorBlink |args=boolean state |returns=none |api=term |addon=ComputerCraft |desc=Sets whether the cursor is blinking or not. |exam...") |
m (moved Term.setCursorBlink() to Term.setCursorBlink) |
(No difference)
|
Revision as of 20:43, 7 July 2012
Function term.setCursorBlink | |
Sets whether the cursor is blinking or not. | |
Syntax | term.setCursorBlink(boolean state) |
Returns | none |
Part of | ComputerCraft |
API | term |
Examples
Example | |
Makes the cursor blink for 3 seconds, then not blink for 3 seconds. | |
Code |
term.setCursorBlink(true) |