vote up 1 vote down star

Yesterday I asked how I could disable or reassign the infamous CAPS LOCK key. The accepted answer pointed me to AutoHotkey, a powerful free, open-source utility for Windows for automating key strokes and mouse clicks.

The tool includes a script language and even a compiler (!) and it seems to work very well. For example, I managed to map the middle mouse button to the ALT-TAB key combination using this script in Windows Vista:

MButton::AltTabAndMenu
return

Now, I wanted to do the same reassigning the CAPS LOCK key to ALT-TAB:

CapsLock::AltTabAndMenu
return

But this doesn't have the desired effect. Instead of showing the "ALT TAB" running applications menu, it shows the Vista Start menu, as if I had hit the WIN key.

Any suggestions?

Thanks!

flag

These both work for me in Vista. – Dennis Williamson Jul 17 at 17:23

2 Answers

vote up 1 vote down check

This works for me

CapsLock::AltTabMenu

return
link|flag
vote up 0 vote down
CapsLock UP::AltTabAndMenu
return
link|flag
Sorry, doesn't work on my machine. Same behavior (opens Windows Start menu) – splattne Jul 17 at 12:22

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.