Behold the Caps Lock key, a vestige of a previous era and scourge to the modern user. I never use the Caps Lock key, and I get the impression that most users don’t. Yet it still becomes accidentally activated, producing bothersome effects.
AutoHotkey is capable of disabling the Caps Lock key. AutoHotkey is a tiny program that lets you assign behavior to keystrokes, mouse actions, and more. It is actually very powerful and can run extremely complex scripts, which makes it somewhat intimidating. For these reasons I avoided it, although Lifehacker frequently praised it, until I finally took the plunge. I’ll never go back.
SetCapsLockState, AlwaysOff
Disabling the Caps Lock key is a one liner. But that seems like such a waste of a key; can’t I do something useful with it? Yes I can!
SetCapsLockState, AlwaysOff CapsLock:: if (!capsDown) { capsDown := 1 Process, Exist, trillian.exe if (%ErrorLevel% == 0) { Run, C:\Program Files (x86)\Trillian\trillian.exe } else { IfWinActive, ahk_class TSSHELLWND WinActivate, ahk_class Shell_TrayWnd IfWinExist, Trillian WinActivate else SendInput, +^{t} } } return CapsLock Up:: capsDown := 0 IfWinExist, Trillian SendInput, +^{t} return
This script shows my Trillian contact list while I hold Caps Lock and hides it when I release the key. Now with one keystroke I can easily peek to see who is online and return to my work undisturbed. It even launches Trillian if it is not already running. I greatly prefer this to Trillian’s dock/autohide feature because I was always making Trillian pop open when I didn’t mean to.
If you want to use this script, be sure to set the run command to Trillian’s location on your computer, and assign the Hotkey Ctrl+Shift+T to the action “Contact List: Toggle Visible” (this setting is found within Automation in Trillian’s Preferences).
I’m sure this script could be adapted to toggle other programs and Instant Messengers.
Note: This works on three of my computers running Windows 7 and Trillian Astra, but I imagine it would work with Trillian 3 and other versions of Windows.