Difference between revisions of "Event.MOUSE DOWN"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(10 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | ''' | + | '''Available since:''' Gideros 2011.6<br/> |
− | ''' | + | '''Value:''' mouseDown<br/> |
− | ''' | + | '''Defined by:''' [[Sprite]]<br/> |
− | === | + | |
− | + | === Description === | |
+ | This event is dispatched on mouse down action. It is possible to generate this event using touch actions, by enabling this option through project settings. | ||
Mouse button can have values of: | Mouse button can have values of: | ||
− | + | *[[KeyCode.MOUSE_NONE]] | |
− | + | *[[KeyCode.MOUSE_LEFT]] | |
− | + | *[[KeyCode.MOUSE_RIGHT]] | |
− | + | *[[KeyCode.MOUSE_MIDDLE]] | |
Modifiers can have values of: | Modifiers can have values of: | ||
− | + | *[[KeyCode.MODIFIER_NONE]] | |
− | + | *[[KeyCode.MODIFIER_SHIFT]] | |
− | + | *[[KeyCode.MODIFIER_CTRL]] | |
− | + | *[[KeyCode.MODIFIER_ALT]] | |
− | + | *[[KeyCode.MODIFIER_META]] | |
− | === | + | |
− | '''x''': (number) | + | === Parameters === |
− | '''y''': (number) | + | '''x''': (number) x coordinate of the click<br/> |
− | '''rx''': (number) | + | '''y''': (number) y coordinate of the click<br/> |
− | '''ry''': (number) | + | '''rx''': (number) unrounded x coordinate of the click<br/> |
− | '''button''': (number) | + | '''ry''': (number) unrounded y coordinate of the click<br/> |
− | ''' | + | '''button''': (number) mouse button pressed<br/> |
+ | '''modifiers''': (number) modifiers present<br/> | ||
+ | '''mouseType''': (string) origin of the mouse event. possible values: finger, pen, mouse, penTablet<br/> | ||
+ | |||
+ | === Example === | ||
+ | <syntaxhighlight lang="lua"> | ||
+ | -- event mouse down example | ||
+ | local mypixel = Pixel.new(0xFF0000, 1, 64, 64) | ||
+ | mypixel:setPosition(128, 128) | ||
+ | stage:addChild(mypixel) | ||
+ | mypixel:addEventListener(Event.MOUSE_DOWN, function(e) | ||
+ | if mypixel:hitTestPoint(e.x, e.y) then | ||
+ | local x, y = mypixel:globalToLocal(e.x, e.y) | ||
+ | local button, modifier = e.button, e.modifiers | ||
+ | print(x, y, button, modifier) | ||
+ | e:stopPropagation() | ||
+ | end | ||
+ | end) | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | {{Sprite}} |
Latest revision as of 14:26, 13 July 2023
Available since: Gideros 2011.6
Value: mouseDown
Defined by: Sprite
Description
This event is dispatched on mouse down action. It is possible to generate this event using touch actions, by enabling this option through project settings.
Mouse button can have values of:
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 the click
y: (number) y coordinate of the click
rx: (number) unrounded x coordinate of the click
ry: (number) unrounded y coordinate of the click
button: (number) mouse button pressed
modifiers: (number) modifiers present
mouseType: (string) origin of the mouse event. possible values: finger, pen, mouse, penTablet
Example
-- event mouse down example
local mypixel = Pixel.new(0xFF0000, 1, 64, 64)
mypixel:setPosition(128, 128)
stage:addChild(mypixel)
mypixel:addEventListener(Event.MOUSE_DOWN, function(e)
if mypixel:hitTestPoint(e.x, e.y) then
local x, y = mypixel:globalToLocal(e.x, e.y)
local button, modifier = e.button, e.modifiers
print(x, y, button, modifier)
e:stopPropagation()
end
end)
- Sprite:addChild
- Sprite:addChildAt
- Sprite:clearBlendMode
- Sprite:clone
- Sprite:contains
- Sprite:get
- Sprite:getAlpha
- Sprite:getAnchorPoint
- Sprite:getAnchorPosition
- Sprite:getBounds
- Sprite:getChildAt
- Sprite:getChildIndex
- Sprite:getChildrenAtPoint
- Sprite:getClip
- Sprite:getColorTransform
- Sprite:getDrawCount
- Sprite:getHeight
- Sprite:getLayoutConstraints
- Sprite:getLayoutInfo
- Sprite:getLayoutParameters
- Sprite:getMatrix
- Sprite:getNumChildren
- Sprite:getParent
- Sprite:getPosition
- Sprite:getRotation
- Sprite:getRotationX
- Sprite:getRotationY
- Sprite:getScale
- Sprite:getScaleX
- Sprite:getScaleY
- Sprite:getScaleZ
- Sprite:getSize
- Sprite:getSkew
- Sprite:getSkewX
- Sprite:getSkewY
- Sprite:getWidth
- Sprite:getX
- Sprite:getY
- Sprite:getZ
- Sprite:globalToLocal
- Sprite:hitTestPoint
- Sprite:isVisible
- Sprite:localToGlobal
- Sprite:redrawEffects
- Sprite:removeChild
- Sprite:removeChildAt
- Sprite:removeFromParent
- Sprite:set
- Sprite:setAlpha
- Sprite:setAnchorPoint
- Sprite:setAnchorPosition
- Sprite:setBlendMode
- Sprite:setClip
- Sprite:setColorTransform
- Sprite:setEffectConstant
- Sprite:setEffectStack
- Sprite:setGhosts
- Sprite:setLayoutConstraints
- Sprite:setLayoutParameters
- Sprite:setMatrix
- Sprite:setPosition
- Sprite:setRotation
- Sprite:setRotationX
- Sprite:setRotationY
- Sprite:setScale
- Sprite:setScaleX
- Sprite:setScaleY
- Sprite:setScaleZ
- Sprite:setShader
- Sprite:setShaderConstant
- Sprite:setSkew
- Sprite:setSkewX
- Sprite:setSkewY
- Sprite:setStencilOperation
- Sprite:setStopEventPropagation
- Sprite:setVisible
- Sprite:setX
- Sprite:setY
- Sprite:setZ
- Sprite:spriteToLocal
- Sprite:swapChildren
- Sprite:swapChildrenAt
- Sprite.ADD
- Sprite.ALPHA
- Sprite.EFFECT MODE AUTOMATIC
- Sprite.EFFECT MODE CONTINUOUS
- Sprite.EFFECT MODE TRIGGERED
- Sprite.LAYOUT ANCHOR CENTER
- Sprite.LAYOUT ANCHOR EAST
- Sprite.LAYOUT ANCHOR NORTH
- Sprite.LAYOUT ANCHOR NORTHEAST
- Sprite.LAYOUT ANCHOR NORTHWEST
- Sprite.LAYOUT ANCHOR SOUTH
- Sprite.LAYOUT ANCHOR SOUTHEAST
- Sprite.LAYOUT ANCHOR SOUTHWEST
- Sprite.LAYOUT ANCHOR WEST
- Sprite.LAYOUT FILL BOTH
- Sprite.LAYOUT FILL HORIZONTAL
- Sprite.LAYOUT FILL NONE
- Sprite.LAYOUT FILL VERTICAL
- Sprite.MULTIPLY
- Sprite.NO ALPHA
- Sprite.SCREEN
- Sprite.new
- Event.ADDED_TO_STAGE
- Event.ENTER_FRAME
- Event.KEY_CHAR
- Event.KEY_DOWN
- Event.KEY_UP
- Event.LAYOUT_RESIZED
- Event.MOUSE_DOWN
- Event.MOUSE_ENTER
- Event.MOUSE_HOVER
- Event.MOUSE_LEAVE
- Event.MOUSE_MOVE
- Event.MOUSE_UP
- Event.MOUSE_WHEEL
- Event.REMOVED_FROM_STAGE
- Event.TOUCHES_BEGIN
- Event.TOUCHES_CANCEL
- Event.TOUCHES_END
- Event.TOUCHES_MOVE