Skip to content

Instantly share code, notes, and snippets.

View SFoskitt's full-sized avatar

Stephanie Foskitt SFoskitt

View GitHub Profile
@derickfay
derickfay / fix_notes.applescript
Created April 16, 2015 16:55
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