Applescript for Outlook - mark messages as read

applescript, macos, outlook

Solution

Try:

tell application "Microsoft Outlook"
    set myMessages to selection
    repeat with aMessage in myMessages
        set aMessage's is read to true
    end repeat
end tell

Problem

I am looking for an Applescript to mark messages as read within Outlook 2011 for Mac. I have not been able to identify the correct property to set.

Original source