Difference between revisions of "Term.setCursorBlink"
From ComputerCraft Wiki
m (moved Term.setCursorBlink() to Term.setCursorBlink) |
(Corrected mapping from "Boolean" to "Boolean (type)") |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
{{Function | {{Function | ||
|name=term.setCursorBlink | |name=term.setCursorBlink | ||
− | |args=[[boolean]] state | + | |args=[[boolean_(type)|boolean]] state |
|returns=none | |returns=none | ||
|api=term | |api=term | ||
Line 13: | Line 13: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:API_Functions]] |
Latest revision as of 13:46, 30 November 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) |