我需要一个简单的AppleScript,它会导致PowerPoint移动到指定的幻灯片编号。遗憾的是,我对AppleScript不够熟悉,无法正确解释Applescript Library for PowerPoint中的信息。我想如果有人能让我开始,我可以从那里开始。
脚本只需要引用活动的演示文稿。如果我可以和我的电脑说话,我只需要告诉它“去幻灯片#5”或“去幻灯片#2”等等。
脚本需要在幻灯片模式下工作,因为演示文稿将在单独的屏幕上运行。非常感谢您的帮助,我无法在任何地方找到它。
答案 0 :(得分:0)
my gotoSlide(2)
on gotoSlide(whichSlide)
-- whichSlide is the integer position of the slide
tell application "Microsoft PowerPoint"
activate
tell active presentation
set theView to view of document window 1
go to slide theView number whichSlide
end tell
end tell
end gotoSlide