I'm trying to open a new message window in Microsoft Outloook version 15.6 and populate the fields including an attachment. Here's my actionscript code:
tell application "Microsoft Outlook"
set newMessage to make new outgoing message with properties {subject:"Hooray for automation"}
make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"jim.shank@example.com"}}
make new attachment at the end of newMessage with properties {file:"/tmp/Invoice INV2 - Paul.pdf"}
open newMessage
end tell
(This message was derived from this stack overflow question).
However, I get this error: 256:398: execution error: Microsoft Outlook got an error: Error while saving the changed record property. (-2700)
Is it possible to use actionscript to open a new message in the latest version of Outlook?