Autohotkey 脚本未按预期工作

Autohotkey 脚本未按预期工作

我尝试在 autohotkey 中使用此脚本让 ctrl+shift+箭头键将应用程序捕捉到 Windows 屏幕的一侧(通常是 Windows 键+箭头),但它只是随机起作用。请帮我找出我做错了什么?

^+Right::send, #{Right down}{Right up}
^+Left::send, #{Left down}{Left up}

答案1

尝试

^+Right:: Send {LWin down}{Right}{LWin up}

或者

^+Right:: SendEvent {LWin down}{Right down}{LWin up}{Right up}

https://autohotkey.com/docs/commands/Send.htm

相关内容