WoW API: IsAltKeyDown

From AddOn Studio
Revision as of 12:31, 18 June 2006 by WoWWiki>Starlightblunder ({{wowapi}})
Jump to navigation Jump to search

WoW API < IsAltKeyDown

Returns true if the alt key is currently pressed.

IsAltKeyDown();

Arguments
none

Returns
Boolean
1 (true) if ALT is currently being held down, nil otherwise.

Example
 if ( IsAltKeyDown() ) then DoSomething(); end
Result
1 | nil