当按下一系列键时,在 AHK 中发送一个句子?

当按下一系列键时,在 AHK 中发送一个句子?

所以现在我可以通过按一个字母键来发送一个句子,例如:

^!#h:: send hello world

我希望能够做的是当我按下一系列字符时,它会打出一个句子。比如

^!#hello:: 发送 hello world

谢谢你,史蒂夫,

答案1

热字符串

::hello::hello world

为了使其自动展开,我们使用星号选项

:*:hello::hello world

如需查看全套选项: http://www.autohotkey.com/docs/Hotstrings.htm#Options

相关内容