Difference between revisions of "Event.MOUSE HOVER"

From GiderosMobile
Line 2: Line 2:
 
'''<translate>Available since</translate>:''' Gideros 2015.08<br/>
 
'''<translate>Available since</translate>:''' Gideros 2015.08<br/>
 
'''<translate>Value</translate>:''' mouseHover<br/>
 
'''<translate>Value</translate>:''' mouseHover<br/>
 +
'''<translate>Defined by</translate>:''' [[Special:MyLanguage/Sprite|Sprite]]<br/>
 
=== <translate>Descriptio</translate>n ===
 
=== <translate>Descriptio</translate>n ===
 
<translate>This event is dispatched when mouse is moved and not button is pressed. The event is available only on desktops as Windows, MacOS and WinRT
 
<translate>This event is dispatched when mouse is moved and not button is pressed. The event is available only on desktops as Windows, MacOS and WinRT
  
Difference between [[Special:MyLanguage/Event.MOUSE_MOVE|Event.MOUSE_MOVE]]
+
Difference between `Event.MOUSE_MOVE`
 
  is that mouse hover does not have any mouse buttons pressed, but mouse move has at least 1 mouse button pressed.
 
  is that mouse hover does not have any mouse buttons pressed, but mouse move has at least 1 mouse button pressed.
 
   
 
   
 
Modifiers can have values of:
 
Modifiers can have values of:
[[Special:MyLanguage/KeyCode.MODIFIER_NONE|KeyCode.MODIFIER_NONE]]
+
`KeyCode.MODIFIER_NONE`
[[Special:MyLanguage/KeyCode.MODIFIER_SHIFT|KeyCode.MODIFIER_SHIFT]]
+
`KeyCode.MODIFIER_SHIFT`
[[Special:MyLanguage/KeyCode.MODIFIER_CTRL|KeyCode.MODIFIER_CTRL]]
+
`KeyCode.MODIFIER_CTRL`
[[Special:MyLanguage/KeyCode.MODIFIER_ALT|KeyCode.MODIFIER_ALT]]
+
`KeyCode.MODIFIER_ALT`
[[Special:MyLanguage/KeyCode.MODIFIER_META|KeyCode.MODIFIER_META]]</translate>
+
`KeyCode.MODIFIER_META`</translate>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''x''': (number) <translate>x coordinate of mouse cursor</translate><br/>
 
'''x''': (number) <translate>x coordinate of mouse cursor</translate><br/>

Revision as of 10:27, 24 August 2018

Available since: Gideros 2015.08
Value: mouseHover
Defined by: Sprite

Description

This event is dispatched when mouse is moved and not button is pressed. The event is available only on desktops as Windows, MacOS and WinRT

Difference between `Event.MOUSE_MOVE`

is that mouse hover does not have any mouse buttons pressed, but mouse move has at least 1 mouse button pressed.

Modifiers can have values of: `KeyCode.MODIFIER_NONE` `KeyCode.MODIFIER_SHIFT` `KeyCode.MODIFIER_CTRL` `KeyCode.MODIFIER_ALT` `KeyCode.MODIFIER_META`

Parameters

x: (number) x coordinate of mouse cursor
y: (number) y coordinate of mouse cursor
rx: (number) unrounded x coordinate of the mouse cursor
ry: (number) unrounded y coordinate of the mouse cursor
button: (number) button pressed - none
modifiers: (number) Modifiers present