Difference between revisions of "cursor.hide"

From Inspired-Lua Wiki
Jump to navigation Jump to search
Line 1: Line 1:
'''functionName''' is a function that is part of the [[:Category:cursor|cursor functions]].
+
cursor.'''hide'''() is a function that is part of the [[:Category:cursor|cursor functions]].
  
 
It hides the cursor (mouse pointer) on the screen.<br />
 
It hides the cursor (mouse pointer) on the screen.<br />
NB : Even with TouchPad devices, the user can't have it shown again, until [[cursor.show]]() is called.
+
NB : Even with TouchPad devices, the user can't have it shown again, until [[cursor.show]]() is called.<br />
  
 
{{Since|3.0}}
 
{{Since|3.0}}

Revision as of 11:04, 11 June 2011

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 == true) then 
   cursor.hide()
end

See also