Hi
I have an AppleScript which I have used to move messages to an archive folder in Outlook 2011 (version 14.4.2).
Now it is broken and would like to hear if anybody has the same issue.
I am running OS X 10.9.3
The code is:
If you copy paste it into the AppleScript Editor and compile it, then you get an error.
I do not know if it is Mavericks or Outlook which is broken.
Hope somebody knows anything about this.
I have an AppleScript which I have used to move messages to an archive folder in Outlook 2011 (version 14.4.2).
Now it is broken and would like to hear if anybody has the same issue.
I am running OS X 10.9.3
The code is:
Code:
tell application "Microsoft Outlook"
set theMessages to current messages
set thisFolder to mail folder id 267 of application "Microsoft Outlook"
repeat with theMsg in theMessages
move theMsg to thisFolder
end repeat
end tell
If you copy paste it into the AppleScript Editor and compile it, then you get an error.
I do not know if it is Mavericks or Outlook which is broken.
Hope somebody knows anything about this.