Re: How do I title Powerpoint slides so I can "go to them"?
- From: "John Wilson" <john@xxxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 7 Jun 2007 09:58:09 +0100
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".
.
- Prev by Date: Re: Playing music in slideshow, successfully
- Next by Date: Re: is there a scissors function in powerpoint
- Previous by thread: Re: How do I title Powerpoint slides so I can "go to them"?
- Next by thread: Show looses Audio AND ONLY shows video as a still(Not playing)
- Index(es):
Relevant Pages
|