mark all circles/holes at once?

Hi.

Is it possible to select all circles at once?
(I do have a lot of text and a lot of dots/circles, and I need to fill these circles so I have to select them all which is quiet time consuming as they're on the same layer so I have to click on every single circle - and if I miss one... I do have problems) ;-)

Thanks!

Parents
No Data
Reply
  • you can try macro code below

    Sub color_cirles()
     Dim sr As ShapeRange, p As Page, c As New Color
     c.UserAssign
     For Each p In ActiveDocument.Pages
     p.Activate
     Set sr = ActivePage.FindShapes(Type:=cdrEllipseShape)
     If sr.Count <> 0 Then sr.ApplyUniformFill c
    Next p
    End Sub

Children
No Data