Want Applescript to change a Keynote presentation to a particular slide -



Want Applescript to change a Keynote presentation to a particular slide -

i'm newbie applescript, can applescript tell keynote display specific slide out of order during presentation? don't want advance in sequence, want specify specific slide in random order.

i tried apple documentation, nil there. not of similar questions here answers question. macscripters site suggestion (below) didn't work.

not working (this, after having applescript start keynote , launch slideshow presentation:

tell application "keynote" show (slide 22 of "/users/me/documents/keynote_slides.key") end tell

also tried, not working

tell application "system events" tell process "keynote" jump 22 end tell end tell

so, missing?

something should work think:

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

applescript

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -