Hi - not dumb at all!
Do you mean you want the pics to fill the slide?
Actually the easiest way would be to start again! You probably didnt want to
hear that but if you start a new presentation > insert > picture> new photo
album and choose the default option of "Fit to slide" then you'll get what
you want.
If you need to batch change the existing photo album then assuming it was
made with the above commands this vba will sort it.
Sub resizealbum()
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.Fill.Type = msoFillPicture Then
With oshp
..LockAspectRatio = msoFalse
..Height = ActivePresentation.PageSetup.SlideHeight
..Width = ActivePresentation.PageSetup.SlideWidth
..Top = 0
..Left = 0
..Line.Visible = msoFalse
End With
End If
Next oshp
Next osld
End Sub
DONT KNOW HOW TO USE vba see here:
http://www.pptfaq.com/FAQ00033.htm
--
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html