Difference between revisions of "cursor.hide"
Jump to navigation
Jump to search
Jimbauwens (talk | contribs) |
|||
Line 12: | Line 12: | ||
== Example == | == Example == | ||
− | <syntaxhighlight>if (isPlaying | + | <syntaxhighlight>if (isPlaying) then |
cursor.hide() | cursor.hide() | ||
else | else |
Revision as of 13:46, 11 January 2012
cursor.hide() is a function that is part of the cursor functions.
It hides the cursor (mouse pointer) on the screen.
NB : Even with TouchPad devices, the user can't have it shown again, until cursor.show() is called.
This has been introduced in TI-Nspire OS 3.0 (Changes).
Syntax
cursor.hide()
No arguments.
Example
if (isPlaying) then
cursor.hide()
else
cursor.show()
end
See also