本文介绍了在autohotkey中用作热键时如何发送字母本身的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如,我想按'v'通过自动热键获取'asdfv',但是当我定义如下时:
For example I want press 'v' to get 'asdfv' by autohotkey, but when I define like the below :
v ::发送asdfv
v::send asdfv
该脚本陷入无限循环,因为最后一个v被作为快捷方式覆盖.所以问题是,我怎样才能得到想要的东西.
the script run into an infinite loop, because the last v is covered as the shortcut. So the question is, how I can get want I want.
推荐答案
两种方式:
#UseHook On
v::send asdfv
或
$v::send asdfv
这篇关于在autohotkey中用作热键时如何发送字母本身的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!