Reveal all animation at once

  • Thread starter Brandon Billings
  • Start date
B

Brandon Billings

In the presentation I'm working on, all of the slides have reveal animations
for the information on them. Would it be possible to program a button (in
PP, or using VB of some sort) that when clicked, would cause all the reveals
on the page to show up instantly. Some people using it, will want to go
through each reveal animation one at a time, while others would like to just
reveal everything on the slide at once.

One thought I had was that if a script/button could somehow change the
animation Timing from mouse click to 0 seconds, all the animations would run
instantly, but of course, I have no idea how to do anything like this.

If anyone has any ideas, or questions, let me know.

Thanks!
 
G

Guest

I think you want something like this

Sub AutoAnimate(
ActivePresentation.Slides(2).Shapes(3).AnimationSettings.AdvanceMode = ppAdvanceOnTim
ActivePresentation.Slides(2).Shapes(3).AnimationSettings.AdvanceTime =
End Su
Sub ClickAnimate(
ActivePresentation.Slides(2).Shapes(3).AnimationSettings.AdvanceMode = ppAdvanceOnClic
End Su

AutoAnimate sets the 3rd shape on the 2nd slide to automatically come up when you go to the slide. ClickAnimate sets that shape to only come up when you click. Is this what you are talking about

--Davi

David M. Marcovit
Author of _Powerful PowerPoint for Educators
http://www.loyola.edu/education/PowerfulPowerPoint

----- Brandon Billings wrote: ----

In the presentation I'm working on, all of the slides have reveal animation
for the information on them. Would it be possible to program a button (i
PP, or using VB of some sort) that when clicked, would cause all the reveal
on the page to show up instantly. Some people using it, will want to g
through each reveal animation one at a time, while others would like to jus
reveal everything on the slide at once

One thought I had was that if a script/button could somehow change th
animation Timing from mouse click to 0 seconds, all the animations would ru
instantly, but of course, I have no idea how to do anything like this

If anyone has any ideas, or questions, let me know

Thanks
 
J

John Langhans [MSFT]

[CRITICAL UPDATE - Anyone using Office 2003 should install the critical
update as soon as possible. From PowerPoint, choose "Help -> Check for
Updates".]

Hello,

PowerPoint doesn't provide the functionality that you are looking for
without resorting to VBA or add-ins. However, if the presenter knows, ahead
of time, that they don't want to use the animations in a presentation they
can turn them off before starting slide show:

1) Slide Show -> Set up show
2) Check the "Show without animation" setting from the "Show options"
3) Click "OK"

If you (or anyone else reading this message) think that it's important that
PowerPoint provide this kind of functionality (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

It's VERY important that, for EACH wish, you describe in detail, WHY it is
important TO YOU that your product suggestion be implemented. A good wish
submssion includes WHAT scenario, work-flow, or end-result is blocked by
not having a specific feature, HOW MUCH time and effort ($$$) is spent
working around a specific limitation of the current product, etc. Remember
that 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 so that we can FEEL YOUR PAIN.

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
 

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