简体   繁体   English

AutoHotKey-Alt +`(反引号)到Shift + Alt + Tab

[英]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. 我想将Left Alt + `重新映射为Shift + Alt + Tab ,换句话说,使其表现得像Mac OS X的后退窗口周期。

http://www.autohotkey.com/docs/Hotkeys.htm This page describes how to map some key combination to AltTab and ShiftAltTab, and the examples http://www.autohotkey.com/docs/Hotkeys.htm此页面描述了如何将某些组合键映射到AltTab和ShiftAltTab,以及示例

 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 ) 尝试Autohotkey_L( 下载AutoHotkey

That is the version I use and your example worked correctly for me on Windows 7 Ultimate 64 bit. 那是我使用的版本,您的示例在Windows 7 Ultimate 64位上对我来说正常工作。

LAlt & `::ShiftAltTab

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM