magnel
08-12-2014, 03:44 AM
Hello,
I am using PPT 2010 and I am trying to remove the alt text (tooltip) from each shape/object/pictures in the presentation. I am using the below code and it successfully remove alt text from all the objects from the presentation. But it does not remove the alt text from the master slides.
Sub BlankTheAltText()
Dim oSl As Slide
Dim oSh As Shape
For Each oSl In ActivePresentation.Slides
For Each oSh In oSl.Shapes
oSh.AlternativeText = ""
Next
Next
End Sub
Please can you help to get the appropriate code to remove the alt text from the objects in slide master as well.
Thanks
I am using PPT 2010 and I am trying to remove the alt text (tooltip) from each shape/object/pictures in the presentation. I am using the below code and it successfully remove alt text from all the objects from the presentation. But it does not remove the alt text from the master slides.
Sub BlankTheAltText()
Dim oSl As Slide
Dim oSh As Shape
For Each oSl In ActivePresentation.Slides
For Each oSh In oSl.Shapes
oSh.AlternativeText = ""
Next
Next
End Sub
Please can you help to get the appropriate code to remove the alt text from the objects in slide master as well.
Thanks