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
word_macros
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