I want to create a presentation that when I get to a stopping point for an exercise/activity that I will leave the current slide up and in x minutes the next slide will show and a sound will play. I think I need to use the AdvanceOn feature. I found this block of code in the online help.
With ActivePresentation.Slides(2).SlideShowTransition
.AdvanceOnTime = True
.AdvanceTime = 5
.SoundEffect.ImportFromFile “c:windowsmediadogbark.wav”
End With
ActivePresentation.SlideShowSettings.AdvanceMode = _
ppSlideShowUseSlideTimings
I have never done this tpye of code before. The above doesn’t include the Sub procedure. I added a module to the code window, but I don’t know if that was the correct way to go.
Any and all help would be appreciated. Thank You. Fay