Outlook 2011 for Mac 内でメッセージを既読としてマークするための Applescript を探しています。
設定する正しいプロパティを特定できませんでした。
Outlook 2011 for Mac 内でメッセージを既読としてマークするための Applescript を探しています。
設定する正しいプロパティを特定できませんでした。
試す:
tell application "Microsoft Outlook"
set myMessages to selection
repeat with aMessage in myMessages
set aMessage's is read to true
end repeat
end tell
既読としてマークするメッセージを選択したい場合、上記の答えは素晴らしいです。しかし、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