PPT2000: Animation Timings Appear To Be Shorter than in Previous Versions of PowerPointID: Q218570
|
Presentation objects with Custom Animation timings that were set to zero seconds, appear to animate faster after a series of animations or a long animation effect (such as the Crawl animation effect).
When you show presentations created with prior versions of PowerPoint, this behavior is more evident .
The narration feature of PowerPoint have been improved so that it synchronizes better with build effects. For this to work properly, animation timings must be measured from the start of the previous animation to the start of the next animation.
This is a change in the way earlier versions of PowerPoint handled timing events. Earlier versions of PowerPoint measure time between the end of an animation to the start of the next animation.
Microsoft provides programming examples for illustration only, without
warranty either expressed or implied, including, but not limited to, the
implied warranties of merchantability and/or fitness for a particular
purpose. This article assumes that you are familiar with the programming
language being demonstrated and the tools used to create and debug
procedures. Microsoft Support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to
provide added functionality or construct procedures to meet your specific
needs. If you have limited programming experience, you may want to contact
the Microsoft fee-based consulting line at (800) 936-5200. For more
information about the support options available from Microsoft, please see
the following page on the World Wide Web:
http://support.microsoft.com/support/There are two methods for working around this problem:
NOTE: You can use the SHIFT key to select a contiguous group of objects. Click the first item you want, and SHIFT+Click the last object you want to select.Also, you can use the CTRL key to select discontinuous objects in the list.
Sub EffectChange()
Dim oSlide As Slide
Dim oShape As Shape
'Loop through each slide of the presentation.
For Each oSlide In ActivePresentation.Slides
'Loop through each shape on the slide.
For Each oShape In oSlide.Shapes
'If the shape has been set to animate, set
'the animation effect to Appear.
If oShape.AnimationSettings.Animate Then
oShape.AnimationSettings.EntryEffect = ppEffectAppear
End If
Next oShape
Next oSlide
End Sub
For more information about using the sample code in this article, please
see the following article in the Microsoft Knowledge Base:Q212536 OFF2000: How to Run Sample Code from Knowledge Base Articles
NOTE: The above times are only approximate, and may vary with processor and clock speed of your computer. For exact measurements, you must measure these timings on the machine you plan to use to present your presentation.
Animation
EffectDuration
SecondsCrawl 5 Flash Once:
Slow2 Spiral 2 Swivel 5 Zoom Out 2
On the Title Slide of your presentation, you have the following animations and timings set:Example:To make sure the animations occur at the times you want, adjust the time between animations to take in account the duration of actual animation.
- The timing of Fly from Right, when applied to title text by word with 4 words, is zero seconds.
- The timing of Shape 1 with the Swivel animation applied to it is 5 seconds.
- The timing of Shape 2 with the Swivel animation applied to it is 5 seconds.
- The timing of text in the subtitle frame with Fly from Bottom applied to it is 6 seconds.
After the adjustment, the timings reflect the duration of the actual animation. Each word in the title will take one second to perform the Fly animation, regardless of which direction it flies in from. Therefore, it will take 4 seconds for the animation to be completed.To set the timings, follow these steps:
Shapes 1 and 2 use the Swivel animation, which takes 5 seconds. Do not worry about the timings for the first and last objects to be animated. The first word of the title will fly in at the same time every time. The subtitle is the last thing to animate, only its timings need to be changed, not the duration
- The timing of Title animation has no change in timing.
- The timing of timing is set to 9 seconds.
- The timing of Shape 2 is set to 10 seconds.
- The timing of Subtitle text is set to 11 seconds.
Microsoft has confirmed this to be a problem in PowerPoint 2000.
Additional query words: PPT2K PPT2000 PPT POWERPNT 2000 PPT9 9.0
Keywords : kbdta
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: June 28, 1999