Skip to content

Instantly share code, notes, and snippets.

@Emrys365
Created March 26, 2021 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Emrys365/f1a6a8567086d4cbdf340e6a8cb173a7 to your computer and use it in GitHub Desktop.
Save Emrys365/f1a6a8567086d4cbdf340e6a8cb173a7 to your computer and use it in GitHub Desktop.
Remove all notes in current PowerPoint presentation
on run {input, parameters}
tell application "Microsoft PowerPoint" -- version: 2019
set allSlides to slides of active presentation
repeat with each_slide in allSlides
set content of text range of text frame of place holder 2 of notes page of each_slide to ""
end repeat
end tell
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment