Skip to content

Instantly share code, notes, and snippets.

@nistara
Forked from derickfay/fix_notes.applescript
Created November 27, 2018 00:16
Show Gist options
  • Save nistara/90c6f633a13dc53a48c173399fa58c01 to your computer and use it in GitHub Desktop.
Save nistara/90c6f633a13dc53a48c173399fa58c01 to your computer and use it in GitHub Desktop.
Change Keynote Presenter Notes Font and Size for All Slides
tell application "Keynote"
tell document 1
set theSlides to slides
repeat with s in the slides
tell presenter notes of s
set font to "Helvetica"
set size to 24
end tell
end repeat
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment