如何在高级脚本中发送代字号?

时间:2016-01-09 05:01:16

标签: naturallyspeaking

我想在Dragon NaturallySpeaking的高级脚本中发送波形符。我尝试了SendKeys "~",但~ ENTER 击键替换为expected

示例:

Sub Main
    SendKeys "source ~/.bash_profile"
End Sub

enter image description here

如何在高级脚本中发送代字号?

1 个答案:

答案 0 :(得分:1)

您可以使用{}作为转义字符,例如SendKeys "{~}"。出于同样的原因,您可以使用SendKeys "{+}"SendKeys "{^}"SendKeys "{%}"分别发送加号,插入符号和百分号。

结果,您的示例变为:

Sub Main
    SendKeys "source {~}/.bash_profile"
End Sub