我是Applescript的新手,但是Applescript可以告诉Keynote在演示过程中显示特定的幻灯片无序吗?我不想按顺序前进,但我确实想按随机顺序指定特定的幻灯片。
我尝试了Apple文档,但什么都没有。这里没有一个类似的问题真正回答了这个问题。MacScripters站点建议(如下)不起作用。
不工作(在使用Applescript start 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那么,我错过了什么?
发布于 2011-07-18 07:01:45
我认为这样的东西对你来说应该是有效的:
tell application "Keynote"
tell slideshow 1
show slide 22
end tell
end tellhttps://stackoverflow.com/questions/6726444
复制相似问题