Skip to content

Instantly share code, notes, and snippets.

@talkingmoose
Created November 29, 2015 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talkingmoose/ef6d0302184964797e0a to your computer and use it in GitHub Desktop.
Save talkingmoose/ef6d0302184964797e0a to your computer and use it in GitHub Desktop.
Add a category to an Outlook item.
tell application "Microsoft Outlook"
set theMessages to selection
repeat with aMessage in theMessages
set category of aMessage to category "Family"
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment