Re: How do I title Powerpoint slides so I can "go to them"?

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



As Lucy says. You might also be interested in this short vba macro which
sets the title to visible / invisible and saves you dragging it off the
slide

Sub set_title()
Dim osld As Slide
Dim toggle As Integer
toggle = MsgBox("Invisible titles?", vbYesNo, "Set title status")
For Each osld In ActivePresentation.Slides
If osld.Shapes.HasTitle Then
If toggle = 7 Then osld.Shapes.Title.visible = msoTrue _
Else osld.Shapes.Title.visible = msoFalse
End If
Next
End Sub
"tsnikwah" <tsnikwah@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:A3BB47A4-9694-4A30-8821-60971D350D0C@xxxxxxxxxxxxxxxx
I'm trying to "label" my slides so I can right click during a presentation
and go to a specific slide by label rather than by "slide number".


.



Relevant Pages