Difference between revisions of "Mouse"

From MiniScript Wiki
Jump to navigation Jump to search
(Created page with "In Mini Micro, the <msinline>mouse</msinline> module is a small collection of functions related to detecting the mouse state, and controlling display of the mouse cursor....")
 
Line 6: Line 6:
 
|-
 
|-
 
| [[mouse.button]](''which=0'') || detect whether a mouse button is pressed
 
| [[mouse.button]](''which=0'') || detect whether a mouse button is pressed
 +
|-
 
| [[mouse.x]] || get the current X position of the mouse, in [[screen coordinates]]
 
| [[mouse.x]] || get the current X position of the mouse, in [[screen coordinates]]
 +
|-
 
| [[mouse.y]] || get the current Y position of the mouse, in [[screen coordinates]]
 
| [[mouse.y]] || get the current Y position of the mouse, in [[screen coordinates]]
 +
|-
 
| [[mouse.visible]] || get or set whether the mouse cursor is visible
 
| [[mouse.visible]] || get or set whether the mouse cursor is visible
 
|}
 
|}
  
 
[[Category:Mini Micro]]
 
[[Category:Mini Micro]]

Revision as of 14:42, 8 March 2020

In Mini Micro, the mouse module is a small collection of functions related to detecting the mouse state, and controlling display of the mouse cursor.

Method Purpose
mouse.button(which=0) detect whether a mouse button is pressed
mouse.x get the current X position of the mouse, in screen coordinates
mouse.y get the current Y position of the mouse, in screen coordinates
mouse.visible get or set whether the mouse cursor is visible