5

Outlook 2011 for Mac 内でメッセージを既読としてマークするための Applescript を探しています。

設定する正しいプロパティを特定できませんでした。

4

2 に答える 2

8

試す:

tell application "Microsoft Outlook"
    set myMessages to selection
    repeat with aMessage in myMessages
        set aMessage's is read to true
    end repeat
end tell
于 2013-02-20T05:03:27.127 に答える
1

既読としてマークするメッセージを選択したい場合、上記の答えは素晴らしいです。しかし、Outlook on Mac では、カレンダーの招待状を「未読」として削除済みにします...このバージョンは実行され、cron から好きなだけ実行するように設定できます。

tell application "Microsoft Outlook"
    repeat with afolder in deleted items
        set aMsg to (every message of afolder where its is read is not true)
        repeat with aMessage in aMsg
            set aMessage's is read to true
        end repeat
    end repeat
end tell
于 2016-03-17T16:37:40.207 に答える