slide notes text from powerpoint slides

V

vinsab

Hi,

I need to get text of slide notes, using VBA. I am able
to get shapes, title etc through Slide object but am
unable to find any routine, property or solution to
retreive slide notes for each slide.
Help!!
 
D

David M. Marcovitz

ActivePresentation.Slides(1).NotesPage.Shapes(2).TextFrame.TextRange.Text

contains the text from the notes for slide 1. I imagine a loop with For
Each sld in ActivePresentation.Slides would get you what you want.

--David

--
David M. Marcovitz
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
 
Top