FORMAT POWERPOINT BULLETS IN CUSTOM TEXTBOXES

R

ra

FYI only -some useful Marco's below.

FOR CHANGING ALL BULLETS IN CUSTOM TEXTBOXES TO SELECTED TYPE

Sub BulletFormatChangeAll()
Dim oSld As Slide
Dim oShp As Shape
Dim oPar As TextRange
For Each oSld In ActivePresentation.Slides
For Each oShp In oSld.Shapes
If oShp.HasTextFrame Then
For Each oPar In oShp.TextFrame.TextRange.Paragraphs
If oPar.ParagraphFormat.Bullet.Type <> ppBulletNone
Then
If oPar.ParagraphFormat.Bullet.Type <>
ppBulletMixed Then
With oPar.ParagraphFormat.Bullet
.Visible = msoTrue
.UseTextColor = msoTrue
.Font.Name = "Arial"
.Character = 2022
End With
End If
End If
Next oPar
End If
Next oShp
Next oSld

End Sub


FOR CHANGING SELECTED TYPE OF BULLETS IN CUSTOM TEXTBOXES TO NEW
SELECTION

Sub BulletFormatSelectType()
Dim oSld As Slide
Dim oShp As Shape
Dim oPar As TextRange
For Each oSld In ActivePresentation.Slides
For Each oShp In oSld.Shapes
If oShp.HasTextFrame Then
For Each oPar In oShp.TextFrame.TextRange.Paragraphs
If oPar.ParagraphFormat.Bullet.Type <> ppBulletNone
Then
If oPar.ParagraphFormat.Bullet.Character = 186 _
Then
With oPar.ParagraphFormat.Bullet
.Visible = msoTrue
.UseTextColor = msoTrue
.Font.Name = "Courier New"
.Character = 2022
End With
End If
End If
Next oPar
End If
Next oShp
Next oSld

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top