Applescript - 设置消息inputTextArea错误

时间:2017-10-13 21:15:16

标签: applescript

我正在尝试设置消息应用的文本。我使用了一些帮助工具来生成AppleScript代码。在隐私/可访问性中启用。仍然会收到编译错误("一个数字不能跟在这个标识符之后。")。 10.12.6

tell application "Messages"     
    set value of textarea 1 of scroll area 4 of splitter group 1 of window "Messages"  to "Hello World!" 
end tell

有关获取/设定值的任何建议吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

这适用于我使用最新版本的Sierra

activate application "Messages"
delay 1
tell application "System Events"
    set value of text area 1 of scroll area 4 of splitter group 1 of window "Messages" of application process "Messages" to "Hello World"
end tell