-
-
Save derickfay/74a66652b995a538e08a to your computer and use it in GitHub Desktop.
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 |
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
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!!
Getting an error when I run the script - expected end of line on the tell presenter notes of s line. Error highlighted the keyword notes...