Sep 22 2022 05:26 PM
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?
Sep 23 2022 02:15 AM
@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