That seems reasonable to me, but it seems that the Original Poster is
having trouble selecting all the pictures. If this doesn't work, then a
simple VBA script would probably do the trick:
Sub RemoveAllPics()
Dim oSld As Slide
Dim oShp As Shape
For Each oSld In activepresenation.Slides
For Each oShp In oSld.Shapes
If oShp.Type = msoPicture Then
oShp.Delete
End If
Next oShp
Next oSld
End Sub
This should delete all the pictures in a presentation if they are really
pictures and not grouped. It will only work for your purpose if there are
not other pictures in the presentation (ones that you want to keep). If
there are other pictures, then you'll need some more conditions that
distinguish the other pictures from the ones you really want to delete
(possibly based on size or location).
If you try this, I strongly recommend trying it on a COPY of your
presentation in case it doesn't do quite what you want.
--David

Signature
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
> Max, If I'm understanding you correctly, then you just select the
> pictures (left-click and drag your mouse) around the pictures, then hit
[quoted text clipped - 4 lines]
>
> Ted
max - 17 Aug 2006 22:56 GMT
Thanks Ted!!
That really solved my big problem!
I'm very happy with it.
Also thanks to David, when the solution from Ted didn't help yours probably
will have done the job!
You guys are great.
Max.
> That seems reasonable to me, but it seems that the Original Poster is
> having trouble selecting all the pictures. If this doesn't work, then a
[quoted text clipped - 33 lines]
>>
>> Ted