Changing Draw colours after they’re on the page

Copper Contributor

Edited a 200+ page manuscript on Word using green writing via Draw. I want to change the colour of those Draw edits to blue or black. Is it possible to change the colour of all of them en masse?

1 Reply

@Ryan_Coulter Use a macro containing the following code:

 

Dim ashape As Shape
For Each ashape In ActiveDocument.Shapes
    ashape.Line.ForeColor.RGB = RGB(0, 0, 255)
Next ashape