Sub zaphidden()
Dim i As Integer
For i = ActivePresentation.Slides.Count To 1 Step -1
If ActivePresentation.Slides(i) _
..SlideShowTransition.Hidden = True Then
ActivePresentation.Slides(i).Delete
End If
Next i
End Sub
To unhide them substitute
ActivePresentation.Slides(i).SlideShowTransition.Hidden=False
where it says
ActivePresentation.Slides(i).Delete
Boy, have I been missing a valuable resource! That's FAST response. If you
need any HP info, email me (rickrcomm ATSIGN YA HOO DOT COM).
Thanks,
Rick
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.