Skip to content

Instantly share code, notes, and snippets.

@derickfay
Created April 16, 2015 16:55
Show Gist options
  • Save derickfay/74a66652b995a538e08a to your computer and use it in GitHub Desktop.
Save derickfay/74a66652b995a538e08a 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
@RELNO
Copy link

RELNO commented Oct 15, 2022

Excellent!

@KVyDavid
Copy link

Great! I modified this to change text boxes size and font and color
But how do I apply text outline and shadows?
I also want to align center all text boxes vertically and horizontally

Thanks!

@KVyDavid
Copy link

Or apply one of my paragraph style

@gordon123
Copy link

gordon123 commented Jan 24, 2024

thank you!!! for some reason my presenter note text turned to white!! now I can change to black, so I can see the text thank a lot!!

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