Skip to content

Instantly share code, notes, and snippets.

@toco
Created February 17, 2015 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toco/9dddb3035430f6c12b73 to your computer and use it in GitHub Desktop.
Save toco/9dddb3035430f6c12b73 to your computer and use it in GitHub Desktop.
let Keynote reevaluate all cells of the next slide
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
@toco
Copy link
Author

toco commented Feb 17, 2015

It's just a really hacky proof of concept. I wouldn't recommend using this version for a presentation.

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