View Single Post
 
Old 11-04-2014, 06:27 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
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

You could resize the slides using a macro like:
Code:
Sub Demo()
Dim sngWdth As Single, sngScale As Single, iShp As InlineShape
With ActiveDocument.Tables(1)
  sngWdth = .Columns(1).Width
  For Each iShp In .Range.InlineShapes
    With iShp
      .LockAspectRatio = True
      sngScale = sngWdth / .Width
      .Width = sngWdth
      .Height = .Height * sngScale
    End With
  Next
  .LeftPadding = 0
  .RightPadding = 0
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote