Difference between revisions of "cursor.set"

From Inspired-Lua Wiki
Jump to navigation Jump to search
Line 3: Line 3:
  
 
It sets the shape of the mouse pointer to display.<br />
 
It sets the shape of the mouse pointer to display.<br />
 +
<br />
  
 
{{Since|3.0}}
 
{{Since|3.0}}

Revision as of 12:21, 11 June 2011

cursor.set is a function that is part of the cursor functions.

It sets the shape of the mouse pointer to display.

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


Syntax

cursor.set(cursorName)

Parameter Type Description
cursorName
string The name of the cursor shape to use for the mouse pointer. It can be one of the following strings :

"default", "interrogation", "crosshair", "text", "pointer", "link select", "diag resize", "wait busy", "hollow pointer", "rotation", "pencil", "zoom box", "hide", "arrow", "zoom out", "dotted arrow", "clear", "animate", "excel plus", "mod label", "writing", "unavailable", "resize row", "resize column", "drag grab", "hand open", "hand closed", "hand pointer", "zoom in", "dilation", "translation", "show"

Example

if (needsCursor == true) then
   cursor.set("pencil")
end

See also