本文介绍了在自动热键中用作热键时如何将信件作为自身发送的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如,我想按 'v' 以通过 autohotkey 获取 'asdfv',但是当我像下面这样定义时:
For example I want press 'v' to get 'asdfv' by autohotkey, but when I define like the below :
v::send 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
这篇关于在自动热键中用作热键时如何将信件作为自身发送的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!