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
@nick-zhang
Copy link

Many thanks, this drove me crazy in the past. And I found how to change the color as well.

tell application "Keynote"
tell document 1
set theSlides to slides
repeat with s in the slides
tell presenter notes of s
set font to "Open Sans"
set size to 17
set color of it to "black"
end tell
end repeat
end tell
end tell

@klp3hills
Copy link

Awesome, works great! Thanks!

@drdanaviv
Copy link

drdanaviv commented Apr 19, 2020

Thanks for this. It worked beautifully! What verbiage works in the script to change the AFTER and BEFORE PARAGRAPH spacing?

@sambert
Copy link

sambert commented May 12, 2020

Lifesaver!

@SFoskitt
Copy link

SFoskitt commented Aug 3, 2020

Unbelievably useful, thank you!!!

@riaamp
Copy link

riaamp commented Nov 6, 2020

Totally forgot that I'd had this issue. googled it again (want to change the font size) and found my own comment! D'oh.

@amandamcg
Copy link

Still works, thanks!

@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