I'm a newbie with Applescript, but can Applescript tell Keynote to display a specific slide out of order during a presentation? Don't want to advance in sequence, but I do want to specify a specific slide in random order.
I tried the Apple documentation, but nothing there. Not of the similar questions here really answers this question. The MacScripters site suggestion (below) didn't work.
NOT WORKING (this, after having Applescript start Keynote and launch slideshow presentation:
tell application "Keynote" to show (slide 22 of "/Users/me/Documents/Keynote_Slides.key")
end tell
Also tried, but NOT WORKING
tell application "System Events"
tell process "Keynote"
jump to 22
end tell
end tell
So, what am I missing?