Supercharge your PowerPoint productivity with
|
PPTools |
ProblemYour presentation has shadowed text that you want to remove. Shadows can be applied to text in two ways:
SolutionThis macro will remove the shadow from any text in your presentation and hide any shadow that's been applied to the shape that contains text using the shadow settings button.
Sub NoTextShadows()
Dim oSld As Slide
Dim oShp As Shape
For Each oSld In ActivePresentation.Slides
For Each oShp In oSld.Shapes
If oShp.HasTextFrame Then
If oShp.TextFrame.HasText Then
oShp.TextFrame.TextRange.Font.Shadow = msoFalse
oShp.Shadow.Visible = msoFalse
End If
End If
Next oShp
Next oSld
End Sub
See How do I use VBA code in PowerPoint? to learn how to use this example code. Search terms:shadow,remove,delete,hide,text Español Deutsch Français Português Italiano Nederlands Greek Japanese Korean Chinese |
Supercharge your PPT Productivity with PPTools
|
content authoring & site maintenance by |
Remove all text shadows
http://www.pptfaq.com/FAQ00644.htm
Last update 09 September, 2006