WoW API: IsShiftKeyDown

From AddOn Studio
Revision as of 12:06, 4 July 2007 by WoWWiki>Mikk ("IsControlKeyDown", not "IsCtrl")
Jump to navigation Jump to search

WoW API < IsShiftKeyDown

Returns true if the shift/ctrl/alt key is currently depressed.

shiftDown = IsShiftKeyDown();
ctrlDown  = IsControlKeyDown();
altDown   = IsAltKeyDown();

Arguments

none

Returns

Boolean
1 (true) if the given key is currently held down, nil otherwise.

Related Events

MODIFIER_STATE_CHANGED - fires when shift/ctrl/alt keys are pressed or released

Example

 if ( IsShiftKeyDown() ) then DoSomething(); end