7
我正在嘗試使用AppleScript
使用Microsoft Outlook 2011 for mac創建新的傳出郵件。 下面的例子曾在10.6.8
:在Microsoft Outlook中使用AppleScript創建新的傳出郵件
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:"[email protected]"}}
open newMessage
end tell
在Lion上,我發現了以下錯誤:
Microsoft Outlook got an error: Can’t make class outgoing message.
是否有人有線索了什麼問題呢?
我正在使用脫機Outlook。