Also, is there a way to tell the slideshow to go back to
slide one after 10 minutes of no activity?
Any help is MUCH appreciated.
April
For your first question, several people have suggested here that you
create a blank slide before the slide with the animation, and have this
slide set to automatically transition to the next slide after 0 seconds.
For you second question, I believe that Kiosk Mode does this. Go to the
Slide Show menu and choose Set Up Show. Click on the Browsed at a Kiosk
setting. If you do this, you have to be sure that all slides can be
reached by buttons or hyperlinks and all animations are automatically
timed (this disables the space bar, arrow keys, mouse clicks except on
links, etc. for going to the next slide).
--David
--
David M. Marcovitz, Ph.D.
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
"April" <anon...@discussions.microsoft.com> wrote in news:151ee01c415c5
$df544900$a301...@phx.gbl:
Hello,
PowerPoint does not reset animations and slide timings (including
automatically playing inserted multimedia) on a previously viewed slide
when you jump to it from a later viewed slide. Of course, they are reset
when the presentation loops back to the beginning or you navigate
"naturally" to a slide from it's previous slide. Here is a KB article for
PowerPoint 2000 that describes a couple of workarounds (similar articles
exist for other versions of PowerPoint):
http://support.microsoft.com/?id=197701
If it is important to you (or anyone else reading this message) that
PowerPoint include a method for choosing whether or not animations on
slide(s) replay when revisted without normal looping (perhaps a slide or
presentation option, or a Action Setting which can be chosen during slide
show), without having to resort to VBA or add-ins, don't forget to send
your feedback (in YOUR OWN WORDS, please) to Microsoft at:
http://register.microsoft.com/mswish/suggestion.asp
As with all product suggestions, it's important that you not just state
your wish but also WHY it is important to you that your product suggestion
be implemented by Microsoft. Microsoft receives thousands of product
suggestions every day and we read each one but, in any given product
development cycle, there are only sufficient resources to address the ones
that are most important to our customers so take the extra time to state
your case as clearly and completely as possible.
IMPORTANT: Each submission should be a single suggestion (not a list of
suggestions)
John Langhans
Microsoft Corporation
Supportability Program Manager
Microsoft Office PowerPoint for Windows
Microsoft Office Picture Manager for Windows
For FAQ's, highlights and top issues, visit the Microsoft PowerPoint
support center at: http://support.microsoft.com/default.aspx?pr=ppt
Search the Microsoft Knowledge Base at:
http://support.microsoft.com/default.aspx?pr=kbhowto
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of any included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
> For you second question, I believe that Kiosk Mode does this.
Yes, except Kiosk Mode will no longer return to the start of the
presentation after 5 minutes of inactivity. Sure wish MS would fix this
bug...
Chirag has created an addin to help with this, though.
http://officeone.mvps.org/kioskassist/kioskassist.html
--
Echo [MS PPT MVP]
http://www.echosvoice.com
Hi Echo,
This has been fixed in Microsoft Office PowerPoint 2003.
> > Yes, except Kiosk Mode will no longer return to the start of the
> > presentation after 5 minutes of inactivity. Sure wish MS would fix this
> > bug...
> This has been fixed in Microsoft Office PowerPoint 2003.
I tested before I posted that, but I must have bumped the mouse at some
point, as the kiosk didn't reset. At any rate, I retested just now, and
you're absolutely correct -- this has been fixed and works properly in PPT
2003. Thanks for prompting me to retest and correcting my misinformation!
So let me rephrase --
In PPT 2002 (aka PPT XP), Kiosk Mode does not return to the start of the
presentation after 5 minutes of inactivity. This does work, though, in PPT
97, 2000, and 2003.
--
David M. Marcovitz, Ph.D.
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
"Echo S" <ec...@indy.net> wrote in
news:#pNJGalF...@tk2msftngp13.phx.gbl:
- Chirag
PowerShow - View multiple shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
"David M. Marcovitz" <marco...@loyola.edu> wrote in message
news:Xns94BC5E14EEC4Fma...@207.46.248.16...
--
David M. Marcovitz, Ph.D.
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
"Chirag" <my_email_is@my_website.com> wrote in
news:eOeN9PmF...@TK2MSFTNGP12.phx.gbl:
Everything's running great now!
You've all been very helpful!
April
- Chirag
PowerShow - View multiple shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
"David M. Marcovitz" <marco...@loyola.edu> wrote in message
news:Xns94BC629D0558Ama...@207.46.248.16...
It's supposed to look like this:
Sub ResetSlide()
' The number after GotoSlide is the slide number.
SlideShowWindows(1).View.GotoSlide 1, msoTrue
End Sub
Is that exactly what you have, with the exception of the different slide number
following GotoSlide ?
Try changing it to this for starters:
Sub ResetSlide()
' Let's see if the macro ever runs:
Msgbox ("So far, so good. At least we know the code's running.")
' The number after GotoSlide is the slide number.
SlideShowWindows(1).View.GotoSlide 1, msoTrue
End Sub
When you click the button you assigned the macro to, do you see a messagebox?
--
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
Thanks for your tip, but it's still not working. I copied your code and assigned the macro to the button. I turn the slide show mode on, click the button and the message box doesn't appear.
I might be making a huge mistake. Any ideas?
Tks.
That tells us something; it means that the macro's never even running.
Some things to check:
- Are you clicking the button in Slide Show view? That's the only place it will work. It
won't execute macros in normal/editing view.
- What are your macro security settings? Change it temporarily to Medium if it's set to
antyhing higher.
- The macro must be in the same presentation as the slide with the button on it.
Yep, that'll do it.
A tip: always pick Debug, Compile [project name] before running the code.
It'll often catch this kind of glitch and will highlight the problem so you can fix it
right then and there.