变量返回错误答案时如何显示对话框“错误”

时间:2015-06-11 15:52:59

标签: applescript voice-recognition dictating

好的,所以我的代码在下面,当我输入一个拼写不正确的单词或一个没有意义的短语时,它会显示一个带有“msng”的对话框,但我希望我显示一条错误消息。我尝试使用两者如果theAnswer是/包含“msng”然后......但它不起作用,任何帮助都表示赞赏。

*RichTextBox*.Text = *RichTextBox*.Text.TrimEnd();

1 个答案:

答案 0 :(得分:1)

使用

if theAnswer is missing value then
    display dialog "There was an error, you may have misspelled a word or phrased it incorrectly"
else
    display dialog theAnswer
end if

因为«class msng»缺失值的原始AppleScript代码。

display dialog命令显示此类的名称 - > " msng"