I'm much stronger with Excel macros than PP macros, but this seems to
work. That is, of course, assuming you want all the pictures resized
to the same size.
I'm sure this can be cleaned up so it doesn't actually Select each
slide and picture individually, but I don't have time to play with it
right now. Maybe later.
Sub PictureSizer()
For NumSlide = 1 To ActivePresentation.Slides.Count
ActivePresentation.Slides(NumSlide).Select
For Each Picture In ActiveWindow.Selection.SlideRange.Shapes
Picture.Select
Picture.LockAspectRatio = msoFalse
Picture.Height = 59.88 'Change this number to fit your needs
Picture.Width = 82.38 'Change this number to fit your needs
Next
Next
End Sub
I am talking about the physical size. I don't know how to use a macro. Is
the process simple?
- Show quoted text -
I'm much stronger with Excel macros than PP macros, but this seems to
work. That is, of course, assuming you want all the pictures resized
to the same size.
I'm sure this can be cleaned up so it doesn't actually Select each
slide and picture individually, but I don't have time to play with it
right now. Maybe later.
Sub PictureSizer()
For NumSlide = 1 To ActivePresentation.Slides.Count
ActivePresentation.Slides(NumSlide).Select
For Each Picture In ActiveWindow.Selection.SlideRange.Shapes
Picture.Select
Picture.LockAspectRatio = msoFalse
Picture.Height = 59.88 'Change this numbers to fit your needs
Picture.Width = 82.38 'Change this numbers to fit your needs
Next
Next
End Sub