Created
September 12, 2014 11:00
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Though this was ages ago... thank you!
Only issue is slide transition settings seem to be ignored when the slideIndex changes. Any thoughts?