我使用AppleScript将PowerPoint幻灯片显示为生成幻灯片的代码的手动测试/检查步骤的一部分。
这一切都很顺利,但我无法弄清楚如何告诉PowerPoint缩放到适合的状态。或者在我的情况下为188%。
set the zoom of the active window to 185
什么也没做。
如何在此处获取感兴趣的财产?
答案 0 :(得分:2)
适用于 Microsoft Office 2016 ,在15.27版上测试:
-- Example: Set zoom to 188% --
tell application "Microsoft PowerPoint"
tell active window to set zoom of its view to 188
end tell
-- Example: Set zoom to fit --
tell application "Microsoft PowerPoint"
tell active window to set zoom to fit of its view to true
end tell