I'm a teacher and would like to use Keynote slides as flashcards for spelling. I cannot script and am looking for something to be copy/pasted into Applescript Editor and run from there. I came across the following script in another thread and it is close to what I need.
tell application "Keynote"
tell slideshow 1
show slide 3
show slide 2
show slide 1
show slide 4
end tell
end tell
However, there are two problems for my purposes: 1. It is not a random order and would be tedious to write out for several different presentations of different lengths. 2. There is no control for the length of time each card is shown.
Any advice would be greatly appreciated.