Skip to content

Instantly share code, notes, and snippets.

@ellingen
Created September 12, 2014 11:00
Show Gist options
  • Save ellingen/cb9fd23d14eb2a17a3d7 to your computer and use it in GitHub Desktop.
Save ellingen/cb9fd23d14eb2a17a3d7 to your computer and use it in GitHub Desktop.
Open AppleScript editor, and paste this in, press run. This changes every 20 seconds, change the "delay 20" to "delay 10" to have it every 10 seconds.
tell application "Deckset"
tell document 1
repeat
set currentSlideIndex to slideIndex
set slideIndex to slideIndex + 1
if currentSlideIndex = slideIndex then
set slideIndex to 0
end if
delay 20
end repeat
end tell
end tell
@disciplego
Copy link

Though this was ages ago... thank you!

Only issue is slide transition settings seem to be ignored when the slideIndex changes. Any thoughts?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment