需要Applescript才能关闭所有打开的邮件

时间:2014-02-22 17:31:02

标签: applescript

我的妈妈已经150岁了,当她在她的Mac上使用邮件时,她点击了一条消息,因此它在它自己的窗口中打开,然后不是关闭它而是将它最小化到码头。最终她将有40封开放的邮件消息,她的mac减速了。

有没有人有一个AppleScript会关闭所有打开的邮件,设置为每天自动运行一次?

抱歉,我对applecript一无所知。

1 个答案:

答案 0 :(得分:1)

喜欢它,能真正感受到老年亲戚用技术做出最意想不到的事情。

尝试使用此脚本。它适用于10.7,可能不适用于以后的操作系统。

if application "Mail" is not running then
    return
end if

tell application "Mail"
    set message_viewer_title to the name of message viewer 1  -- we don't want to close the main window
    close (every window whose name is not message_viewer_title)
end tell

注意:如果打开了一条从未保存过的新邮件(草稿),Mail会询问该怎么做。

我会让你看一下调度解决方案。