我正在尝试设置消息应用的文本。我使用了一些帮助工具来生成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
有关获取/设定值的任何建议吗?
答案 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