Sub macro()
For Each shp In ActiveDocument.InlineShapes
If shp.Type = wdInlineShapePicture Then
shp.LockAspectRatio = msoFalse
sclH = shp.ScaleHeight
SclW = shp.ScaleWidth
shp.Height = shp.Height * 100 / sclH
shp.Width = shp.Width * 100 / SclW
End If
Next
For Each shp In ActiveDocument.Shapes
If shp.Type = msoPicture Then
shp.LockAspectRatio = msoFalse
shp.ScaleHeight 1, True
shp.ScaleWidth 1, True
End If
Next
End Sub
Regards
pls try
Open in new window
Regards