How do i pause a slide in Powerpoint?

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

I have to create ppt training presentations that users will view on their
individual computers. I tried creating the vba module linked to a custom
"pause" and "resume" button, but it works for some but not for others. I
tried creating a .exe file to pause ("Press any key to resume...") but it
doesn't pause the presentation and it's a less than elegant appearance. I've
tried running in kiosk, presented by a speaker, and browsed by an individual.
 
In slide show, press S to pause, and again to resume. You could add this
information to the instructions.
 
Or you can use VBA to do that:
Sub pauses()
ActivePresentation.SlideShowWindow.View.State = ppSlideShowPaused
End Sub

Sub play()
ActivePresentation.SlideShowWindow.View.State = ppSlideShowRunning
End Sub
--
Shawn Toh (tohlz)
Microsoft MVP PowerPoint

(Amazing PowerPoint animations, artworks, games here)
http://pptheaven.mvps.org
PowerPoint Heaven - The Power to Animate
 
I have to create ppt training presentations that users will view on their
individual computers.  I tried creating the vba module linked to a custom
"pause" and "resume" button, but it works for some but not for others.  I
tried creating a .exe file to pause ("Press any key to resume...") but it
doesn't pause the presentation and it's a less than elegant appearance.  I've
tried running in kiosk, presented by a speaker, and browsed by an individual.

Hi Paul,

It would be better if you show your presentation in Flash player, then
other could pause your presentation by clicking the pause button. Such
as this presentation:
http://www.sameshow.com/samples/res-sample-pro/presentations-with-quizzes-and-simulations.html#110

Only you should do is convert your presentation to Flash, no other vba
required.
 
Back
Top