Difference between revisions of "cursor.show"

From Inspired-Lua Wiki
Jump to navigation Jump to search
m (added "operator" after handheld)
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
It shows the cursor (mouse pointer) on the screen.<br />
 
It shows the cursor (mouse pointer) on the screen.<br />
 
It is mostly used after a [[cursor.hide]].<br />
 
It is mostly used after a [[cursor.hide]].<br />
 +
 +
This function will be ignored if not executed on a handheld operator.<br />
  
 
{{Since|3.0}}
 
{{Since|3.0}}
Line 11: Line 13:
  
 
== Example  ==
 
== Example  ==
<syntaxhighlight>if (isPlaying == true) then  
+
<syntaxhighlight>if (isPlaying) then  
 
   cursor.hide()
 
   cursor.hide()
 
else
 
else

Latest revision as of 15:19, 26 November 2018

cursor.show() is a function that is part of the cursor functions.

It shows the cursor (mouse pointer) on the screen.
It is mostly used after a cursor.hide.

This function will be ignored if not executed on a handheld operator.

This has been introduced in TI-Nspire OS 3.0 (Changes).


Syntax

cursor.show()
No arguments.

Example

if (isPlaying) then 
   cursor.hide()
else
   cursor.show()
end

See also