Table of Contents

Word macros

Resize all images

Sub AA_resize()
Dim i As Long
With ActiveDocument
    For i = 1 To .InlineShapes.Count
        With .InlineShapes(i)
            .ScaleHeight = 50
            .ScaleWidth = 50
        End With
    Next i
End With
End Sub 

References

How can I resize (not compress) multiple images in a MS Word document?