File name footer

T

Thomas

Hi,

Powerpoint 2002's Help says that it is not possible to
automatically insert file names on the footer/header, but
at my previous job we had this feature. The powerpoint we
used was a customized one, so can they have added this
feature somehow? Anyone know if it is possible to get
some add-ins or otherwise enable such a feature in
powerpoint?

Thanks in advance.

Best regards,
Thomas
 
B

B

True, this is not a feature offered by Microsoft at this time. If you think
it is something that should be included on the next version, follow this
link and request it.
http://register.microsoft.com/mswish/suggestion.asp

In the meantime, you can use this macro to do the function:
=======================
Sub FootPath()
Dim SldNum As Integer
For SldNum = 1 To ActivePresentation.Slides.Count
With ActivePresentation.Slides(SldNum).HeadersFooters
.Footer.Text = ActivePresentation.FullName
.Footer.Visible = msoTrue
End With
Next SldNum
End Sub
========================
(Watch for NG text-wrap)


B

--
===============
Please spend a few minutes checking out www.pptfaq.com This link will
answer most of our questions, before you think to ask them.

Change org to com to defuse anti-spam, ant-virus, anti-nuisance
misdirection.
 
T

Thomas

Thanks! -Thomas

-----Opprinnelig melding-----
True, this is not a feature offered by Microsoft at this time. If you think
it is something that should be included on the next version, follow this
link and request it.
http://register.microsoft.com/mswish/suggestion.asp

In the meantime, you can use this macro to do the function:
=======================
Sub FootPath()
Dim SldNum As Integer
For SldNum = 1 To ActivePresentation.Slides.Count
With ActivePresentation.Slides (SldNum).HeadersFooters
.Footer.Text = ActivePresentation.FullName
.Footer.Visible = msoTrue
End With
Next SldNum
End Sub
========================
(Watch for NG text-wrap)


B

--
===============
Please spend a few minutes checking out www.pptfaq.com This link will
answer most of our questions, before you think to ask them.

Change org to com to defuse anti-spam, ant-virus, anti- nuisance
misdirection.



.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top