A newer version of Max is available. Click here to access the latest version of this document.

modifiers

Report modifier key presses on the computer keyboard

Description

modifiers will report the state of the keyboard's modifier keys, polled according to a set rate in milliseconds.

Arguments

Name Type Opt Description
polling-rate (milliseconds) int opt Specifies a polling rate in milliseconds. The default value is 0 (no polling).

Messages

bang Sends out a report of the current modifier key states.
(keyboard) The keyboard input to modifiers comes directly from the computer keyboard.
interval polling-rate (milliseconds) [int]
The word interval followed by a number, specifies the rate, in milliseconds, used when polling the state of the modifier keys. A value of zero disables polling.

Information for box attributes common to all objects

Output

int: Output is sent whenever a modifier key is pressed down on the computer keyboard. Modifier key states are reported as 0 (not pressed) or 1 (pressed).

Out left outlet: The on/off state of the Shift key.

Out second outlet: The on/off state of the Caps Lock key.

Out third outlet: the on/off state of the Option key on Macintosh or the Alt key on Windows.

Out fourth outlet: the on/off state of the Control key.

Out fifth outlet: the on/off state of the Command key on Macintosh or the Control key on Windows.

Note: The fourth and fifth outlets both report the on/off state of the Control key on Windows, since the Command key on Macintosh is equivalent to the Control key on Windows. For cross-platform uses, Windows users should use the fifth outlet of the modifiers object for reporting the Control key state. The fourth outlet also reports the Control key on Windows so that (older) Macintosh patches that use this key can be opened on Windows systems. The Macintosh Control key normally corresponds to the right-hand mouse button on Windows. See the section on file and key mappings in the Max Tutorials for a complete discussion of cross-platform keyboard issues.

Examples

Modifier keys typed on the computer keyboard can be used to trigger messages

See Also

Name Description
key Report key presses on the computer keyboard
keyup Report key releases on the computer keyboard
numkey Interpret numbers typed on the computer keyboard
Max Basic Tutorial 8: Keyboard and Mouse Input Max Basic Tutorial 8: Keyboard and Mouse Input