View Single Post
 
Old 01-17-2015, 12:35 PM
djlee djlee is offline Windows 8 Office 2010 64bit
Novice
 
Join Date: Jan 2015
Posts: 19
djlee is on a distinguished road
Default

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
Reply With Quote