【发布时间】:2014-02-28 22:47:15
【问题描述】:
我正在尝试使用苹果脚本在 Outlook 2011 中创建会议邀请。我已经打开了outlook会议课的字典
我尝试使用
创建会议活动tell application "Microsoft Outlook"
set currentTime to (the current date)
set newEvent to make new calendar event with properties {location:"Dial In : +4319284090, Conference code: 5270687926", start time:(currentTime + (60 * 60)), end time:(currentTime + (60 * 60) + (60 * 60) / 2), content:fileContents}
set newMeeting to make new meeting message with properties {meeting:newEvent}
open newMeeting
end tell
但我得到了错误
error "Microsoft Outlook got an error: AppleEvent handler failed." number -10000
有没有人可以帮助我,我会感谢你的努力。
【问题讨论】:
标签: scripting outlook applescript osx-mavericks