You did it! Words can not express!
I recorded a macro to add a transition too all of the slides, but the recorded doesn't capture Select All. How do I make these commands apply a transition to all slides, please?
Code:
' Add Transition
With ActiveWindow.Selection.SlideRange.SlideShowTransition
.EntryEffect = ppEffectFadeSmoothly
.Speed = ppTransitionSpeedFast
.AdvanceOnClick = msoTrue
End With
DJ