Power point slide show

  • Thread starter Thread starter John
  • Start date Start date
J

John

I would like to pause a slide show during its
presentation. There are all kinds of customized buttons
but not a pause/start button.
 
You can use the Pause key on the keyboard to pause the slide show. Hitting
it again would resume it. Alternatively, you can set the Action of a shape
to the following macro to get the same effect:
---
Sub TogglePauseResume()
With SlideShowWindows(1)
If .View.State = ppSlideShowPaused Then
.View.State = ppSlideShowRunning
Else
.View.State = ppSlideShowPaused
End If
End With
End Sub
---

- Chirag

PowerShow - View multiple shows simultaneously
http://officerone.tripod.com/powershow/powershow.html
 
Back
Top