简体   繁体   English

如何使用AutoHotkey将Alt + j重新映射为AltTab

[英]How to remap Alt+j as AltTab using AutoHotkey

如何将Alt + j重新映射为AltTab,将Alt + k重新映射为Alt + Shift + Tab?

You can use right Alt: 您可以使用正确的Alt:

RAlt & j::AltTab
RAlt & k::ShiftAltTab

or left Alt: 或离开Alt:

LAlt & j::AltTab
LAlt & k::ShiftAltTab

or both! 或两者!

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

相关问题 如何使用自动快捷键将大写锁定键重新映射到EMACS super? - How to remap capslock key to EMACS super using Autohotkey? AutoHotKey:如何将度数符号(°)重新映射到反斜杠? - AutoHotKey: How to remap degree symbol(°) to backslash? 使用自动热键将大写锁定键重新映射到修改键ctrl + shift + alt - Remap capslock-key to modifier key ctrl+shift+alt with Autohotkey 使用自动热键(W7 Pro SP1)将“ Ctrl + 1”重新映射为“ Alt + d” - Remap “Ctrl+l” to “Alt+d” with Autohotkey (W7 Pro SP1) 取消autohotkey中现有的键重映射 - Cancel an existing key remap in autohotkey Windows PC上的Autohotkey重映射Apple Mac键盘 - Autohotkey remap Apple Mac keyboard on Windows PC 如何使用autohotkey停靠左侧的窗口? - How to dock a window the the left using autohotkey? 在使用自动编程器重新映射Alt / Ctrl / Win时,使用罗马尼亚程序员布局键入罗马尼亚字符后,Windows变得疯狂 - Windows going crazy after typing Romanian characters using a Romanian Programmers layout while remapping Alt/Ctrl/Win with Autohotkey 如何使用 AutoHotkey 激活后台进程? - How to activate a background process using AutoHotkey? 如何使用Internet Explorer 9使用AutoHotkey获取IE对象 - How to get IE object with Internet Explorer 9 using autohotkey
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM