Created
April 16, 2015 16:55
-
-
Save derickfay/74a66652b995a538e08a to your computer and use it in GitHub Desktop.
Change Keynote Presenter Notes Font and Size for All Slides
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" | |
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 |
Awesome, works great! Thanks!
Thanks for this. It worked beautifully! What verbiage works in the script to change the AFTER and BEFORE PARAGRAPH spacing?
Lifesaver!
Unbelievably useful, thank you!!!
Totally forgot that I'd had this issue. googled it again (want to change the font size) and found my own comment! D'oh.
Still works, thanks!
Excellent!
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!
Or apply one of my paragraph style
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
Many thanks, this drove me crazy in the past. And I found how to change the color as well.