使用 AutoHotkey 在 Windows 10 中重新映射 Ctrl-Alt-Arrow

使用 AutoHotkey 在 Windows 10 中重新映射 Ctrl-Alt-Arrow

我正在尝试重新映射 Ctrl-Alt-Right 和 Ctrl-Alt-Left 以分别模仿 Ctrl-Win-Right 和 Ctrl-Win-Left。我按照这个帖子,并成功映射 Ctrl-Arrow 以给出正确的结果,但是当我将脚本更改为

#NoTrayIcon
!^Right::^#Right
!^Left::^#Left

并运行它,但我想要的功能没有实现。这是为什么?我该如何修复它?

答案1

尝试

!^Right:: send {LWin down}{LCtrl down}{Right}{LWin up}{LCtrl up}

或者

!^Right:: sendevent {LWin down}{LCtrl down}{Right down}{LWin up}{LCtrl up}{Left up}

相关内容