Hi folks,
I'm working on a power point presentation that has two slide masters and I want to change the footer on them both. My code currently reads....
Problem is I now want to switch to the other slide master and have it change the text in what is "Rectangle 4" there as well. I tried returning to a regular view, and switching to slide using the second master and repeating but it keeps changing only the first slide master. Is there a slidemaster equivalent to
Thanks and have a great weekend.
[/code]
I'm working on a power point presentation that has two slide masters and I want to change the footer on them both. My code currently reads....
Code:
ActiveWindow.ViewType = ppViewSlideMaster
ActivePresentation.SlideMaster.Shapes("Rectangle 4").Select
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Select
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Characters(Start:=1, Length:=17).Select
ActiveWindow.Selection.TextRange.Text = "Type1"
Problem is I now want to switch to the other slide master and have it change the text in what is "Rectangle 4" there as well. I tried returning to a regular view, and switching to slide using the second master and repeating but it keeps changing only the first slide master. Is there a slidemaster equivalent to
Code:
ActivePresentation.Slides(#).Select
Thanks and have a great weekend.
[/code]