How do i pause a slide in Powerpoint?

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

Rae Drysdale

In slide show, press S to pause, and again to resume. You could add this
information to the instructions.
 
T

tohlz

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
 
P

phtar

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.
 

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