AutoHotKey - Alt+` (backtick) to Shift+Alt+Tab
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 ke开发者_Go百科y 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?
I believe ` is a special character, so you might need to escape it. Something like `` or similar.
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
精彩评论