Type Boolean Event key Revision Release 2024.3703 Keywords key, isShiftDown See also event.isAltDown event.isCtrlDown event.isCommandDown
Indicates if the Shift key was held down or if the Caps Lock key was on at the time the key event occurred. Note that this property is guaranteed to return true
if the key that was just pressed down was leftShift
, rightShift
, or capsLock
.
-- Called when a key event has been received local function onKeyEvent( event ) if event.isShiftDown then -- The Shift was held down for the given key else -- The Shift was not held down for the given key end return false end -- Add the key event listener Runtime:addEventListener( "key", onKeyEvent )