Printing in Ppt 2002 Need to "include animation"

  • Thread starter Thread starter mark
  • Start date Start date
M

mark

In PowerPoint 2000, you can print slides with the
animations included. However, I cannot find that in
PowerPoint 2002. Is it gone?
 
PowerPoint 2002 introduces interactive animations and complex animations
(e.g. motion paths). This makes printing slides with animations a bit too
much. So, this option is not exported in any of the dialog boxes. But if you
want, the following macro will print out the slides with animations:

---
Sub PrintWithAnimations()
With ActivePresentation
.PrintOptions.OutputType = ppPrintOutputBuildSlides
.PrintOut
End With
End Sub
---

It would not print the complex animations and interactive sequences.

- Chirag

PowerShow - View multiple shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
 
[CRITICAL UPDATE - Anyone using Office 2003 should install the critical
update as soon as possible. From PowerPoint, choose "Help -> Check for
Updates".]

Hello,

PowerPoint 2002 and PowerPoint 2003 do not have the capability to print
with animations, without resorting to VBA or add-ins, due to the complexity
and non-sequential possibilities added to animation effects beginning with
PowerPoint 2002.

If you (or anyone else reading this message) feel strongly that PowerPoint
should include some kind feature for printing slides/handouts/notes other
than how they appear in normal/slide view, 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. 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
 
Back
Top