使用Apple脚本在Outlook 2011中创建会议邀请

时间:2014-02-28 13:03:07

标签: scripting outlook applescript osx-mavericks

我正在尝试使用Apple脚本在Outlook 2011中创建会议邀请。我打开了Outlook会议类的字典

enter image description here

我尝试使用

创建会议活动
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

任何人都可以帮助我,我将感激你的努力。

1 个答案:

答案 0 :(得分:0)

根据字典,meeting messageA meeting message recieved by the user.这不是作为邀请发出的实际消息。换句话说,meeting message是其他人邀请您参加会议时收件箱中显示的消息。

calendar event具有attendee属性。我在玩这个游戏的10分钟内无法让它工作,但我的假设是,当创建日历事件时,邀请将会发送到attendees

请注意attendee是只读列表。创建活动时,您必须指定required attendeesoptional attendees的列表。