Changes

Jump to navigation Jump to search

cursor.hide

570 bytes added, 15:19, 26 November 2018
As I found out by myself, and as (https://education.ti.com/html/webhelp/EG_TINspireLUA/EN/content/libraries/cursorlib/show.htm) states, cursor.hide and cursor.show only work on handhelds
Line 1: Line 1:  +
cursor.'''hide'''() is a function that is part of the [[:Category:cursor|cursor functions]].
    +
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.<br />
    +
This function will be ignored if not executed on a handheld operator.<br />
 +
 +
{{Since|3.0}}
 +
 +
== Syntax  ==
 +
cursor.'''hide'''()<br />
 +
No arguments.
 +
 +
== Example  ==
 +
 +
<syntaxhighlight>if (isPlaying) then
 +
  cursor.hide()
 +
else
 +
  cursor.show()
 +
end</syntaxhighlight>
 +
 +
== See also  ==
 +
*[[cursor.show]]
 +
 +
<br /><br />
    
[[Category:cursor]]
 
[[Category:cursor]]
10

edits

Navigation menu