Outlook中的AppleScript新传出消息

Outlook中的AppleScript新传出消息

本文介绍了创建与Microsoft Outlook中的AppleScript新传出消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图创建与Microsoft Outlook 2011新传出消息为Mac,使用的AppleScript
下面的例子在工作 10.6.8

I'm trying to create a new outgoing message with Microsoft Outlook 2011 for mac, using AppleScript.The following example worked in 10.6.8:

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

在狮子,我发现了以下错误:

On Lion I'm getting the following error:

Microsoft Outlook got an error: Can’t make class outgoing message.

没有任何人有一个线索,出了什么问题呢?

Does anybody have a clue what went wrong there?

我使用脱机Outlook。

I'm using offline Outlook.

推荐答案

显然,我使用的是试用版,已过期。随着注册版这个脚本完美。嘘......展望我花了上寻找到这几个小时!

Apparently, I'm using a trial version, that has expired. With registered version this script works perfectly. Boo Outlook...I spent on looking into this a couple of hours!

这篇关于创建与Microsoft Outlook中的AppleScript新传出消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 18:05