How do I rewind an antire slides animations after other slides?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm making a kiosk presentation for work. It has a navigation bar that can
take me slide to slide. Each slide has animations on it. How can I make all
the slides rewind (not during the slide, but) when the slide is revisited. I
would appreciate any help I could get. Thank You!
 
The standard way to do this (a pain if you are talking about every slide)
is to put a blank slide before the slide(s) with animation. The blank slide
should be set to automatically advance to the next slide after 0 seconds.
Hyperlinks go to the blank slide, which jumps right to the correct slide
with animations reset.
--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
If you've got a lot to do you might want to consider using vba to "power" the
nav buttons which wont stop the animation rewinding.

Simple code for next slide

Sub gotonext()
With SlideShowWindows(1).View.Next
End Sub
--

for previous slide just substitute "previous" for "next"
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.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

Back
Top