View Single Post
 
Old 02-19-2016, 11:38 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,913
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

Maybe this would work..

Code:
Sub FooterPPT()
Dim s As Slide
ActivePresentation.SlideMaster.HeadersFooters.DisplayOnTitleSlide = msoFalse
For Each s In ActivePresentation.Slides
'Footer gets visible
If s.CustomLayout.Index <> 1 Then
s.HeadersFooters.Footer.Visible = msoTrue
'Slidenumber gets visible
s.HeadersFooters.SlideNumber.Visible = msoTrue
'Footer gets filled with text
s.HeadersFooters.Footer.Text = "HELLO WORLD"
End If
Next s
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote