notes resizing

S

Steve

I am looking for a way to resize the notes area on all pages of a
presentation. I found a macro on the PPT FAQ web page that resizes the slide
area of all notes pages based on notes master, but not the notes area. I
could edit the macro myself if I knew the notes area placeholder(?) name.
For example, the macro I'm using references the slide as 'oslideshape'. Is
there a name like this for the notes area? I've guessed at several and
searched the web but with no luck.
 
G

Guest

Where Steve's (Steve R) tests for

If .NotesPage.Shapes(x).PlaceholderFormat.Type = ppPlaceholderTitle Then

You would need to test for

If .NotesPage.Shapes(x).PlaceholderFormat.Type = ppPlaceholderBody Then
 
S

Steve Rindsberg

I am looking for a way to resize the notes area on all pages of a
presentation. I found a macro on the PPT FAQ web page that resizes the slide
area of all notes pages based on notes master, but not the notes area. I
could edit the macro myself if I knew the notes area placeholder(?) name.
For example, the macro I'm using references the slide as 'oslideshape'. Is
there a name like this for the notes area? I've guessed at several and
searched the web but with no luck.

This, also from the PPT FAQ, includes a bit of code that locates the notes text
placeholder:

Export the notes text of a presentation
http://www.pptfaq.com/FAQ00481.htm

See if that makes sense to you. If not holler.
 
S

Steve Rindsberg

John Wilson said:
Where Steve's (Steve R) tests for

If .NotesPage.Shapes(x).PlaceholderFormat.Type = ppPlaceholderTitle Then

You would need to test for

If .NotesPage.Shapes(x).PlaceholderFormat.Type = ppPlaceholderBody Then

Thanks, John.
 

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

Top