cursor.show

From Inspired-Lua Wiki
Revision as of 14:19, 26 November 2018 by Zirconium (talk | contribs) (added "operator" after handheld)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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