如何将 ALT+TAB 更改为 CONTROL

如何将 ALT+TAB 更改为 CONTROL

我经常在应用程序之间切换,我想知道是否有办法使用 Autohotkey 来实现这一点。有没有可以执行此操作的脚本?

答案1

使用自动热键-

#Requires AutoHotkey v1.1.33

!Tab::Return         ; disables default ALT + TAB
LControl::AltTabMenu ; Show or hide the ALT + TAB menu when Left Control is pressed

; press Left Control + CapsLock to toggle On/Off the script
; so that you can use the control key for normal functionality when required
LControl & CapsLock::Suspend, toggle

使用上述代码创建脚本,或
将其包含在现有脚本中。(警告:Suspend命令将禁用现有脚本中的所有其他热键和热字符串)

相关内容