Consulting

Results 1 to 4 of 4

Thread: How to edit footer in attached slide through vba

  1. #1

    How to edit footer in attached slide through vba

    footerCantedit.pptx

    Hi I tried to access footer text as a shape and as a place holder, but it is not found. How can I edit footer text using vba in attached sheet

  2. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,093
    Location
    It isn't a footer or a placeholder.

    Try

    ActivePresentation.Designs(1).SlideMaster.Shapes("Copyright") _
    .TextFrame.TextRange = "Whatever"
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

  3. #3
    Perfectly worked. Thank you John.

    Is there a way to change the color of Copyright on a specific slide through vba?

  4. #4
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,093
    Location
    Not if the original is on the master
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •