Log in

View Full Version : Footer.



dharmendra
05-23-2009, 03:17 PM
Hello, :hi:

I need the VBA code to put a custom footer on each slide in a presentation. But I can do the text part I need the syntax for changing the alignment and font properties of the footer.

Can somebody help me? :think:

Thank you. :hi:

TrippyTom
05-23-2009, 10:58 PM
PowerPoint doesn't understand the concept of a footer, unlike Word. You would have to add a normal textbox in the same place on the slide to simulate the effect.

TrippyTom
05-23-2009, 11:10 PM
Hmm, I stand corrected. This is from the Object Browser help:

Footer PropertyExample (http://www.vbaexpress.com/forum/)

This example sets the text for the footer on the slide master in the active presentation and sets the footer, date and time, and slide number to appear on the title slide.
With Application.ActivePresentation.SlideMaster.HeadersFooters
.Footer.Text = "Introduction"
.DisplayOnTitleSlide = True
End With

dharmendra
05-24-2009, 05:41 AM
Thank you for the information do you by the way know any resource i could use to learn the objects, properties, methods and events in powerpoint vba.