Created
February 17, 2015 17:53
-
-
Save toco/9dddb3035430f6c12b73 to your computer and use it in GitHub Desktop.
let Keynote reevaluate all cells of the next slide
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 "Keynote" | |
repeat | |
set allSlides to slides of front document | |
set currentslide to current slide of front document | |
set nextSlideNumber to (slide number of currentslide) + 1 | |
if nextSlideNumber < (count of allSlides) then | |
set nextSlide to item nextSlideNumber of allSlides | |
repeat with aCell in cells in every table of nextSlide | |
set tmpFormula to formula of aCell | |
if tmpFormula is not missing value then | |
set value of aCell to tmpFormula | |
end if | |
end repeat | |
end if | |
do shell script "sleep 1" | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's just a really hacky proof of concept. I wouldn't recommend using this version for a presentation.