Created
August 26, 2015 17:04
-
-
Save jessefulton/f0ea1306c43ae8156369 to your computer and use it in GitHub Desktop.
Export Keynote Speaker Notes
This file contains hidden or 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
# 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