event.isAltDown

Type Boolean
Event mouse
Revision Release 2024.3703
Keywords mouse, isAltDown

Overview

Indicates if the alt button was held down at the time the mouse event occurred.

Example

-- Called when a mouse event has been received.
local function onMouseEvent( event )
    if event.isAltDown then
        -- The alt button is currently pressed down.
    else
        -- The alt button is not being pressed.
    end
end
                             
-- Add the mouse event listener.
Runtime:addEventListener( "mouse", onMouseEvent )