繁体   English   中英

当使用Apple脚本打开会议窗口时,如何从MS Outlook获取会议详细信息

[英]How to Get the Meeting Details from MS Outlook when the meeting window is Opened using Apple script

我试图在MS Outlook日历上执行Apple脚本以获取会议详细信息,例如“日期和时间”,时区和其他内容。

关闭会议邀请然后选择会议邀请时,我可以获取需要的详细信息,但是当打开同一邀请时,则无法从Apple脚本中获取任何详细信息。

有人可以建议我要获得所需详细信息到底需要做什么。

谢谢,拉维

这是一种方法:

tell application "Microsoft Outlook"
    if (count of (windows whose index is 1)) is not 0 then
        set olObject to object of item 1 of (windows whose index is 1)
        if class of olObject is calendar event then
            set thisEvent to olObject
            get timezone of thisEvent
            get start time of thisEvent
        end if
    end if
end tell

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM