P
Peter
I have a VBA script that updates a text box in a series of PowerPoint slides
as the slide show progresses. I can access a particular shape in each slide
with something like:
Set objSlide = SlideShowWindows(1).View.Slide
For Each objShape In objSlide.Shapes
Msgbox objShape.TextFrame.TextRange.Text
Next objShape
I would like to be able to access shapes in the slide master so the
following change to the first line should work:
Set objSlide = SlideShowWindows(1).View.Slide.Master
However, the this throws an error 13.
Can anyone advise as to how to access shapes in the slide master? Thanks.
as the slide show progresses. I can access a particular shape in each slide
with something like:
Set objSlide = SlideShowWindows(1).View.Slide
For Each objShape In objSlide.Shapes
Msgbox objShape.TextFrame.TextRange.Text
Next objShape
I would like to be able to access shapes in the slide master so the
following change to the first line should work:
Set objSlide = SlideShowWindows(1).View.Slide.Master
However, the this throws an error 13.
Can anyone advise as to how to access shapes in the slide master? Thanks.