Function SetCursor

SetCursor(shape)
This function changes the mouse cursor shape for your program. It accepts one of the following cursor names as a string:
  • "Arrow"
  • "Cross"
  • "Wait"
  • "No"
  • "Hand"
function OnMouseMove(x, y)
	if x>10 and x<190 and y>10 and y<30
		SetCursor ("hand")
	else
		SetCursor ("arrow")	
	end if
end function

See also: