Applescript for Outlook - 将消息标记为已读

use*_*508 4 macos outlook applescript

我正在寻找一个Applescript标记在Outlook 2011 for Mac中读取的邮件.

我无法确定要设置的正确属性.

ada*_*one 7

尝试:

tell application "Microsoft Outlook"
    set myMessages to selection
    repeat with aMessage in myMessages
        set aMessage's is read to true
    end repeat
end tell
Run Code Online (Sandbox Code Playgroud)