Autohotkey 不会执行整个脚本

Autohotkey 不会执行整个脚本

这是我的脚本:

^!m::Send hello
Sleep, 500
Send world

它所做的只是发送“hello”。我如何告诉 autohotkey 继续前进?

答案1

当您执行多行时,您需要将它们括在热键和 之间return

就像这样:

^!m::
    Send, hello
    Sleep, 500
    Send, world
return

相关内容