Sample Code to Reset Custom Animation

Last reviewed: January 30, 1998
Article ID: Q162091
The information in this article applies to:
  • Microsoft PowerPoint 97 for Windows

SUMMARY

The following sample code turns off any custom animation settings within the active presentation. At the end of the macro a message box is displayed indicating if any changes were made to the presentation.

MORE INFORMATION

Sub ResetCustomAnimation()

   Dim SlideObject As Slide
   Dim ShapeObject As Shape
   Dim TotalChanges As Long

   ' Initialize the counters
   TotalChanges = 0

   ' Outer loop goes through every slide in the Active presentation
   For Each SlideObject In Application.ActivePresentation.Slides

      ' Inner loop goes through every shape in the presentation
      For Each ShapeObject In SlideObject.Shapes

         With ShapeObject.AnimationSettings

            ' Check if animation settings are used
            If .Animate <> msoFalse Then
               .Animate = msoFalse
               TotalChanges = TotalChanges + 1
            End If

         End With

      Next ShapeObject

   Next SlideObject

   ' Check if any objects were changed
   If TotalChanges = 0 Then
      MsgBox "No objects had animation events. No changes were made " _
         & "to the presentation.", vbInformation, "No Custom Animations"
   Else

      ' Set up the message box
      If TotalChanges = 1 Then
         MsgBox "The custom animation settings were successfully reset.", _
            vbInformation, TotalChanges & " Object Reset"
      Else
         MsgBox "The custom animation settings were successfully reset.", _
            vbInformation, TotalChanges & " Objects Reset"
      End If

   End If

End Sub

Microsoft provides examples of Visual Basic for Applications procedures 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.

The Visual Basic procedures in this article are provided 'as is' and Microsoft does not guarantee that they can be used in all situations. While Microsoft support engineers can help explain the functionality of a particular macro, they will not modify these examples to provide added functionality, nor will they help you construct macros to meet your specific needs.

If you have limited programming experience, you may want to consult one of the Microsoft Solution Providers. Solution Providers offer a wide range of fee-based services, including creating custom macros. For more information about Microsoft Solution Providers, call Microsoft Customer Information Service at (800) 426-9400.


Additional query words: 97 8.00 kbmacro ppt8 vba vbe
Keywords : kbcode kbmacro kbprg kbpptvba
Version : 97
Platform : WINDOWS
Hardware : x86
Issue type : kbhowto


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 30, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.