Notes Master Slide

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way to change the information in the notes master from page to page, within the same presentation? I want to create a presentation which has several chapters. I would like to have Chapter 1 with a chapter description for,say, pages 1-7. Then I want to have chapter 2 with a different chapter description for pages 8-12, etc. Any way to do this?
 
you can use use deffrent templete
Rich said:
Is there any way to change the information in the notes master from page
to page, within the same presentation? I want to create a presentation
which has several chapters. I would like to have Chapter 1 with a chapter
description for,say, pages 1-7. Then I want to have chapter 2 with a
different chapter description for pages 8-12, etc. Any way to do this?
 
Rich said:
Is there any way to change the information in the notes master from page to page, within the same presentation? I want to create a presentation which has several chapters. I would like to have Chapter 1 with a chapter description for,say, pages 1-7. Then I want to have chapter 2 with a different chapter description for pages 8-12, etc. Any way to do this?

I *think* you can have multiple notes masters in PPT 2002 and 2003. Not
positive. Which version are you using? If 2002/2003, I can play with it
to find out for sure.
 
Is there any way to change the information in the notes master from page to page,
within the same presentation? I want to create a presentation which has several
chapters. I would like to have Chapter 1 with a chapter description for,say, pages 1-7.
Then I want to have chapter 2 with a different chapter description for pages 8-12, etc.
Any way to do this?
I *think* you can have multiple notes masters in PPT 2002 and 2003. Not
positive. Which version are you using? If 2002/2003, I can play with it
to find out for sure.

That'd be slick, but I don't think PPT allows that - can't see how in 2002, at any rate.

You can apply the same footnote to multiple slides at a time but I don't see any way of
doing this easily with notes pages. Headers/Footers are out - they only apply to Notes
masters, not to individual pages.

Here's one way out:

Apply the text you want on the notes pages as a footer on the slides they apply to
(select multiple slides and apply the footer to all of them at one whack if you like)

Then run this to copy the slide footer text to the notes page associated with each slide
and then make the footer on the slide invisible:

Sub MakeTheMagic()

Dim oSl as Slide
Dim oSh as Shape
For each oSl in ActivePresentation.Slides
with oSl
set osh = osl.notespage.shapes.AddTextBox(msoTextOrientationHorizontal,_
10#, 10#, 700#, 24#)
With osh
.textframe.textrange.text = _
osl.headersfooters.footer.text
end with
.headersfooters.footer.visible = msofalse
end with
Next osl

End sub
 
Seems that the only way to do this is break the presentation up into chapters. I have to cut and paste the slide I want for each chapter. Then I have to edit the slide (or notes) master to include the info I want for each chapter. Does not appear to be a way to keep the presentation whole. It has to be 'cut up' into separate chapters in order to do what I want.

Is there some reason why the macro I posted won't work?
 
Steve, I tried the macro. It wouldn't debug properly. Here is the line which gave me the problem
set osh = osl.notespage.shapes.AddTextBox(msoTextOrientationHorizontal,_
the numbers below this line
10#, 10#, 700#, 24#
are in red. I am a rookie with VBA. Can you help me with this one? Thank

----- Steve Rindsberg wrote: ----

Seems that the only way to do this is break the presentation up into chapters. I have to cut and paste the slide I want for each chapter. Then I have to edit the slide (or notes) master to include the info I want for each chapter. Does not appear to be a way to keep the presentation whole. It has to be 'cut up' into separate chapters in order to do what I want


Is there some reason why the macro I posted won't work

-
Steve Rindsberg, PPT MV
PPT FAQ: www.pptfaq.co
PPTools: www.pptools.co
 
Steve, I tried the macro. It wouldn't debug properly. Here is the line which gave me the problem:
set osh = osl.notespage.shapes.AddTextBox(msoTextOrientationHorizontal,_
the numbers below this line
10#, 10#, 700#, 24#)
are in red. I am a rookie with VBA. Can you help me with this one? Thanks

Most likely it's just a linebreak problem. Make sure the following goes all on one
line:

set osh = osl.notespage.shapes.AddTextBox(msoTextOrientationHorizontal, 10#, 10#,
700#, 24#)

----- Steve Rindsberg wrote: -----
chapters. I have to cut and paste the slide I want for each chapter. Then I have
to edit the slide (or notes) master to include the info I want for each chapter.
Does not appear to be a way to keep the presentation whole. It has to be 'cut up'
into separate chapters in order to do what I want.
 
Back
Top