Vamos lá, outro script para o MS Powerpoint.
Procurar nos espaços reservados e caixas de texto da apresentação por textos em negrito, retirando o negrito.
Sub unbold()
Dim osld As SlideDim oshp As ShapeDim oTemp As TextRangeDim i As IntegerFor Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.HasTextFrame Then
If oshp.TextFrame.HasText Then
Set oTemp = oshp.TextFrame.TextRange
For i = 1 To Len(oTemp)
If oTemp.Characters(i).Font.Bold = True Then _oTemp.Characters(i).Font.Bold = False
Next
End If
End If
Next oshp
Next osldSet oTemp = Nothing
End Sub
Tags: Powerpoint, Slide, UDF, fontes, bold, negrito, unbold
Nenhum comentário:
Postar um comentário