答案1
Dim x as Long
For x = ActivePresentation.Slides.Count to 1 Step -1
With ActivePresentation.Slides(x)
If .SlideShowTransition.Hidden = True Then
.Delete
End If
End with
Next
Dim x as Long
For x = ActivePresentation.Slides.Count to 1 Step -1
With ActivePresentation.Slides(x)
If .SlideShowTransition.Hidden = True Then
.Delete
End If
End with
Next