我正在尝试使用 Applescript 和 Powerpoint 2011 for Mac 调整幻灯片窗口的大小。
过去我使用 VBA 来完成这项工作,但在这里使用 Applescript 似乎是不可能的。脚本是:
tell application "Microsoft PowerPoint"
set show type of slide show settings of active presentation to slide show type speaker
set theSSW to run slide show slide show settings of active presentation
set height of theSSW to 300
set width of theSSW to 400
end tell
(上面的脚本直接复制自Applescript Reference)
问题是幻灯片窗口被裁剪但没有调整大小。这让我发疯。
任何想法?
编辑:绝对有两种方法可以在 Mac 上使用 Applescript 启动和打开 PPT 文件:
在“扬声器模式”中,窗口会缩小,但只显示演示的一部分。演示文稿没有调整大小,但我可以通过鼠标单击前进。
在“窗口模式”中,演示文稿被调整大小。我可以查看所有幻灯片,但无法单击鼠标前进。(如果我手动设置“窗口模式”,即使我用 Applescript 调整它的大小,鼠标点击也会起作用)
如果我在 Windows 上工作,则不存在此问题。