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?