Difference between revisions of "cursor.show"
Jump to navigation
Jump to search
(Created page with " Category:cursor") |
|||
| Line 1: | Line 1: | ||
| + | cursor.'''show'''() is a function that is part of the [[:Category:cursor|cursor functions]]. | ||
| + | It shows the cursor (mouse pointer) on the screen.<br /> | ||
| + | It is mostly used after a [[cursor.hide]].<br /> | ||
| + | {{Since|3.0}} | ||
| + | |||
| + | == Syntax == | ||
| + | cursor.'''show'''()<br /> | ||
| + | No arguments. | ||
| + | |||
| + | == Example == | ||
| + | <syntaxhighlight>if (isPlaying == true) then | ||
| + | cursor.hide() | ||
| + | else | ||
| + | cursor.show() | ||
| + | end</syntaxhighlight> | ||
| + | |||
| + | == See also == | ||
| + | *[[cursor.hide]] | ||
| + | |||
| + | <br /><br /> | ||
[[Category:cursor]] | [[Category:cursor]] | ||
Revision as of 10:06, 11 June 2011
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 has been introduced in TI-Nspire OS 3.0 (Changes).
Syntax
cursor.show()
No arguments.
Example
if (isPlaying == true) then
cursor.hide()
else
cursor.show()
endSee also