A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Hi
I had a chance to test copilot's code, and it was pretty good, but it lacked a couple variable dimensions.
Here's how to use this code.
In PowerPoint, go to Tools > Macro > Visual Basic Editor
In the editor, choose Insert > Module and a white, empty code module will display
Copy the code below and paste it into the module, then press Command-Q to close the Visual Basic Editor
On the Tools menu choose Macro > Macros and select RemoveAllAnimations then click the Run button
Option Explicit
Sub RemoveAllAnimations()
Dim sld As Slide
Dim x
' Loop through all slides within the ActivePresentation
For Each sld In ActivePresentation.Slides
' Loop through each animation on the slide
For x = sld.TimeLine.MainSequence.Count To 1 Step -1
' Remove each animation
sld.TimeLine.MainSequence.Item(x).Delete
Next x
Next sld
' Display a completion notification
MsgBox "All animations were removed from your PowerPoint presentation!"
End Sub