Supercharge your PowerPoint productivity with

Supercharge your PPT Productivity with PPTools - Click here to learn more.

Tell me about PPTools

Correct the order of shapes on Notes Pages. Fix disappearing notes in presenter view.


PPTools
Shape Styles brings the power of styles to PowerPoint. Apply complex formatting with a single click
Merge Excel, CSV or tab-delimited data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
FixLinks prevents broken links when you distribute PowerPoint presentations
Optimizer saves disk space and bandwidth, shrinks your PowerPoint presentations to the right size for email, screenshow or printing
PPT2HTML gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Prep4PDF preserves interactivity in PowerPoint presentations when you convert to PDF
Image Export converts PowerPoint slides to JPG, PNG, GIF, WMF and more

Problem

Your slide notes text doesn't appear in presenter view.

Presenter view locates the second shape on your notes pages and assumes it's the notes text placeholder.
Usually this is true but not always. If the notes text isn't the second shape on the notes page, presenter view won't display your notes text.
If the second shape on the notes page happens to have text, presenter view will display that instead of the notes text.

Solution

Run this macro on your presentation. It will move the notes page slide image and notes text placeholders into the proper order.

Sub FixNotesPageShapeOrder()

    Dim oSl As Slide
    Dim oSh As Shape

    For Each oSl In ActivePresentation.Slides
        ' Send body text to back first
        Set oSh = NotesBodyPlaceholder(oSl)
        If Not oSh Is Nothing Then
            oSh.ZOrder (msoSendToBack)
        End If
        ' Then slide image so
        Set oSh = NotesSlidePlaceholder(oSl)
        If Not oSh Is Nothing Then
            oSh.ZOrder (msoSendToBack)
        End If
        ' and now the order is Slide Image, Body Text, Otherstuff
    Next

End Sub

Function NotesBodyPlaceholder(oSl As Slide) As Shape
    Dim oSh As Shape
    For Each oSh In oSl.NotesPage.Shapes
        If oSh.Type = msoPlaceholder Then
            If oSh.PlaceholderFormat.Type = ppPlaceholderBody Then
                ' Found it!
                Set NotesBodyPlaceholder = oSh
            End If
        End If
    Next
End Function

Function NotesSlidePlaceholder(oSl As Slide) As Shape
    Dim oSh As Shape
    For Each oSh In oSl.NotesPage.Shapes
        If oSh.Type = msoPlaceholder Then
            If oSh.PlaceholderFormat.Type = ppPlaceholderTitle Then
                ' Found it!
                Set NotesSlidePlaceholder = oSh
            End If
        End If
    Next

End Function

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2008 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Español    Deutsch    Français    Português    Italiano    Nederlands    Greek    Japanese    Korean    Chinese



Supercharge your PPT Productivity with PPTools


content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Correct the order of shapes on Notes Pages. Fix disappearing notes in presenter view.
http://www.pptfaq.com/FAQ00951.htm
Last update 28 September, 2008