View Single Post
 
Old 02-19-2016, 12:34 AM
ika ika is offline Windows 8 Office 2013
Novice
 
Join Date: Feb 2016
Posts: 12
ika is on a distinguished road
Thumbs up PPT 2010 VBA Code

Hi

I've made with help of different posts the followng code:

Sub FooterPPT()

ActivePresentation.SlideMaster.HeadersFooters.Disp layOnTitleSlide = msoFalse

Dim s As Slide

For Each s In ActivePresentation.Slides
'Footer gets visible

s.HeadersFooters.Footer.Visible = msoTrue
'Slidenumber gets visible

s.HeadersFooters.SlideNumber.Visible = msoTrue
'Footer gets filled with text

s.HeadersFooters.Footer.Text = "HELLO WORLD"

Next s

End Sub

MY PROBLEM
Unfortunately the footer and the slidenumber is still visible on the titleslide. Any help?

THX for your answers.

Greetings IKA
Reply With Quote