Power point slide show

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.
 
C

Chirag

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top