用applescript改变iChat设置?

时间:2011-06-10 03:30:29

标签: settings applescript ichat

有没有办法创建一个脚本,可以在收到邮件时更改iChat的首选项来运行脚本?

换句话说,我想创建一个脚本来更改iChat首选项以启用我创建的“Message Received.applescript”。哇,这很令人困惑。我只想这个。

我想要一个执行此操作的脚本:

激活iChat 打开iChat偏好设置 移至“提醒”标签 选择事件“收到消息” 打开“运行AppleScript” 从名为“Message Receive.applescript”的脚本文件夹中选择某个脚本

请帮帮忙?

1 个答案:

答案 0 :(得分:3)

您只需编辑iChat的plist文件即可。 defaults对于嵌套值有点尴尬,所以请改用System Events:

tell application "System Events"
    set EventActions to property list item "EventActions" of property list file ((path to preferences folder from user domain as text) & "com.apple.iChat.plist")
    repeat with e in {property list item "MessageNotification" of EventActions, property list item "SubsequentMessage" of EventActions}
        make new property list item at end of e with properties {name:"RunAppleScript", value:true}
        make new property list item at end of e with properties {name:"iChatAppleScriptsKey", value:{"~/Library/Scripts/iChat/Message Received.scpt"}}
    end repeat
end tell

这会将“Message Received.scpt”附加到初始文本邀请和后续消息中 - 如果您只想将其用于后续消息,则可以将其简化。另请注意,您可能需要重新启动iChat才能使更改生效。