Reputation: 121
I want to remap Left Alt + ` to Shift + Alt + Tab, in other words, make it behave like Mac OS X's backward window cycle.
http://www.autohotkey.com/docs/Hotkeys.htm This page describes how to map some key combination to AltTab and ShiftAltTab, and the examples
LAlt & j::AltTab
LAlt & k::ShiftAltTab
work fine for me.
However, neither
LAlt & `::ShiftAltTab
nor
LAlt & vkC0sc029:: ShiftAltTab
works.
Does anyone know how to achieve this?
Upvotes: 2
Views: 4808
Reputation: 382
Try Autohotkey_L (AutoHotkey download)
That is the version I use and your example worked correctly for me on Windows 7 Ultimate 64 bit.
LAlt & `::ShiftAltTab
Upvotes: 0
Reputation: 5016
I believe ` is a special character, so you might need to escape it. Something like `` or similar.
Upvotes: 1