slide notes text from powerpoint slides

  • Thread starter Thread starter vinsab
  • Start date Start date
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!!
 
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/
 
David M. said:
ActivePresentation.Slides(1).NotesPage.Shapes(2).TextFrame.TextRange.Text

On a good day. But if the presentation's been edited much or has come forward
from earlier PPT versions that may not work.

It seems more reliable to iterate through all the shapes on the notes page
until you find one that's a body text placeholder; that'd be the one you're
after.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top