PPT: Remove Slide Notes
Did you ever get your hands on a PowerPoint slide deck from somebody else and read all the (often amusing) slide notes? I always like to make sure that I remove all of my slide notes to make sure I don't embarrass myself. (You know... the 'Click Here' and 'State Your Name' types of reminders ;)
So to clean all the notes out, I use the following code to instantly and thoroughly a whole deck before I push it out the door...
Public Sub RemoveSlideNotes()
Dim objSlide As Slide
Dim objShape As Shape
For Each objSlide In ActivePresentation.Slides
For Each objShape In objSlide.NotesPage.Shapes
objShape.TextFrame.TextRange = ""
Next
Next
End Sub