Is there a macro to find and convert all paragraph text to artistic on a page or document?

This would help so much.

Parents
  •  try it

    Sub convert()
    Dim spar As Shape, sr As ShapeRange, p As Page

    For Each p In ActiveDocument.Pages
    p.Activate

    Set sr = ActivePage.Shapes.FindShapes(Query:="@type = 'text:paragraph'")
    For Each spar In sr
    spar.Text.ConvertToArtistic
    Next spar
    sr.RemoveAll
    Next p
    End Sub

Reply Children