我想在Dragon NaturallySpeaking的高级脚本中发送波形符。我尝试了SendKeys "~"
,但~
被 ENTER 击键替换为expected。
示例:
Sub Main
SendKeys "source ~/.bash_profile"
End Sub
如何在高级脚本中发送代字号?
答案 0 :(得分:1)
您可以使用{}
作为转义字符,例如SendKeys "{~}"
。出于同样的原因,您可以使用SendKeys "{+}"
,SendKeys "{^}"
和SendKeys "{%}"
分别发送加号,插入符号和百分号。
结果,您的示例变为:
Sub Main
SendKeys "source {~}/.bash_profile"
End Sub