0

以前从未使用苹果脚本编写过脚本,我想知道是否有可能创建一个可以在显示消息预览的通知中切换消息设置的苹果脚本。然后我将使用 quicksilver 调用该脚本,这是否可以使用 applescript 并且 quicksilver 能够进行适当的调用来启动脚本?我正在运行小牛操作系统。

4

1 回答 1

1

这将切换“显示消息预览”复选框:

tell application "System Preferences"
    reveal pane id "com.apple.preference.notifications"
end tell
tell application "System Events" to tell window 1 of process "System Preferences"
    repeat with r in rows of table 1 of scroll area 1
        if name of UI element 1 of r is "Messages" then
            set selected of r to true
            exit repeat
        end if
    end repeat
    click checkbox "Show message preview" of group 1
end tell
于 2013-10-31T18:20:20.570 回答