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
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.