Project

General

Profile

Globalkeys » History » Revision 5

Revision 4 (Per Amundsen, 12/26/2018 08:15 PM) → Revision 5/8 (Per Amundsen, 12/26/2018 08:17 PM)

_Added in 2.9_ 

 */globalkeys [-adu] [key] [command]* 

 Adds a global hotkey which will trigger without AdiIRC window being focused. 

 Format is key+key. 

 Modifiers: Ctrl, Shift, Alt. 

 Valid key names can be found "here":https://msdn.microsoft.com/en-us/library/system.windows.forms.keys(v=vs.110).aspx. 

 _Typing /globalkeys with no parameters lists the current keys._ 

 *Switches* 

 -a - Adds a new key. 
 -d - Deletes a key. 
 -u - Updates the command for a key. 

 *Parameters* 

 [key] - The key to add. 
 [command] - The command to run when the key is pressed. 

 *Example* 

 <pre> 
 ; Create a alias called 'ctrldcommand'. 
 alias ctrldcommand { echo -ag ctrl+D was pressed } 

 ; Register the shortcut hotkey Ctrl+D. 
 ; Pressing CTRL+D will now execute the '/ctrldcommand' command. 
 /globalkeys -a Ctrl+D /ctrldcommand 

 ; Unregister the hotkey. 
 /globalkeys -d Ctrl+D 
 </pre>