PowerPoint is one of the most important parts of Microsoft Office Office Applications , and it's a software that you often use in your day-to-day office. Because of its integration of some animation functions, more suitable for the production of courseware and so on, so widely welcomed. However, it is difficult for PowerPoint to remove the animation effects from the resulting PPT files in batches. After the experiment found three ways, hope to be helpful to everyone:
One, PowerPoint Show settings
Open PowerPoint, and in its show settings, select Set to play without animation. This will achieve the same effect.
Second, PowerPoint customization settings
Open PowerPoint, in the Custom Animation dialog box, select the animation sequence number you want to delete (note: You can press the CTRL key to select multiple serial numbers), and then click Delete.
Third, the use of VBA
Sub RemoveAll ()
Dim I as Integer:dim J as Integer
Dim Oactivepres as Object
Set oactivepres = ActivePresentation
With Oactivepres
For I = 1 to. Slides.count
If Val (application.version) < Then
For J = 1 to. Slides (I). Shapes.count
. Slides (I). Shapes (J). Animationsettings.animate = MsoFalse
Next J
Else
For J =. Slides (I). TimeLine.MainSequence.Count to 1 Step-1
. Slides (I). Timeline.mainsequence (J). Delete
Next J
End If
Next I
End With
Set oactivepres = Nothing
End Sub