PowerPoint



 

Introduction

This page provides information related to Microsoft PowerPoint

 

Remove Alt Text From Images

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

 

References

http://superuser.com/questions/404261/remove-tooltips-from-pdfs-exported-from-powerpoint 

 

 

Views: