2
votes

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?

2

2 Answers

1
votes

I believe ` is a special character, so you might need to escape it. Something like `` or similar.

0
votes

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