Skip to content

Instantly share code, notes, and snippets.

@jessefulton
Created August 26, 2015 17:04
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jessefulton/f0ea1306c43ae8156369 to your computer and use it in GitHub Desktop.
Save jessefulton/f0ea1306c43ae8156369 to your computer and use it in GitHub Desktop.
Export Keynote Speaker Notes
# via http://apple.stackexchange.com/questions/136118/how-to-print-full-presenter-notes-without-slides-in-keynote
global presenterNotes
tell application "Keynote"
activate
open (choose file)
tell front document
set presenterNotes to presenter notes of every slide as text
set the clipboard to presenterNotes
do shell script "pbpaste > ~/keynote-notes.txt"
end tell
quit application "Keynote"
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment