View Single Post
 
Old 05-10-2012, 01:03 AM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,343
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi ShSimpson,

On the assumption the pictures aren't in-line with the text, you could use a macro like:
Code:
Sub Reformat()
Application.ScreenUpdating = False
Dim oShp As Shape
For Each oShp In ActiveDocument.Shapes
  With oShp
    .ScaleHeight 0.75, False
    .ScaleWidth 0.75, False
  End With
Next oShp
Application.ScreenUpdating = True
MsgBox "Finished Reformatting."
End Sub
Note that this will resize every kind of non-inline shape in the document.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote