Trying to use the below VBA PowerPoint macro to create a text box, and format the 1st and 2nd bullet. I want the first bullet to be character 8226 (a bullet), but I want the 2nd bullet to be a "-". I haven't found any solution to format the 2nd bullet.
For Each oSld In ActiveWindow.Selection.SlideRange
Set shp = oSld.Shapes.AddShape(Type:=msoTextOrientationHorizontal, _
Left:=482, Top:=195, Width:=500, Height:=50)
shp.Fill.Visible = msoFalsee
shp.TextFrame.TextRange.ParagraphFormat.Bullet.Visible = msoTrue
shp.TextFrame.TextRange.ParagraphFormat.Bullet.RelativeSize = 1.15
shp.TextFrame.TextRange.ParagraphFormat.Bullet.Font.Color = RGB(0, 0, 0)
shp.TextFrame.TextRange.ParagraphFormat.Bullet.Character = 8226