希望Applescript将Keynote演示文稿更改为特定幻灯片

时间:2011-07-17 20:05:45

标签: applescript

我是Applescript的新手,但Applescript可以告诉Keynote在演示期间不按顺序显示特定的幻灯片吗?不想按顺序前进,但我确实想要以随机顺序指定特定的幻灯片。

我尝试了Apple文档,但没有。这里没有类似的问题真的回答了这个问题。 MacScripters站点建议(如下)不起作用。

NOT WORKING(这是在让Applescript启动Keynote并启动幻灯片演示之后:

tell application "Keynote" to show (slide 22 of "/Users/me/Documents/Keynote_Slides.key")
end tell

也尝试了,但没有工作

tell application "System Events"
    tell process "Keynote"
        jump to 22
    end tell
end tell

那么,我错过了什么?

1 个答案:

答案 0 :(得分:4)

这样的事情应该适合你,我想:

tell application "Keynote"
tell slideshow 1
    show slide 22
end tell
end tell