Created
November 29, 2015 01:43
-
-
Save talkingmoose/7eddc2456fda33b2c985 to your computer and use it in GitHub Desktop.
Deletes any selected items (messages, events, contacts, etc.) from Outlook.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Microsoft Outlook" | |
set theSelection to the selection | |
repeat with anItem in theSelection | |
delete anItem | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment