首页 > 办公 > PowerPoint > 正文

如何批量删除Powerpoint文件中生成的动画效果

2019-10-25 22:02:42
字体:
来源:转载
供稿:网友

     Powerpoint是微软OFFICE系列办公应用软件的重要组成部份之一,也是大家在日常的办公中经常用到的一款软件。由于其集成了一些动画的功能,比较适合课件等的制作,因此受到广泛的欢迎。不过,对于Powerpoint来说,如何批量删除其生成的ppt文件中的动画效果,是一件较为困难的事情。经过试验找到了三种方法,希望能对大家有所帮助:

      一,Powerpoint放映设置

      打开Powerpoint,在其“放映设置”中,选中设为“播放时不带动画”。这样就可以达到同样的效果。

      二,Powerpoint自定义设置

      打开Powerpoint,在“自定义动画”对话框中,选择要删除的动画序号(注:可以按ctrl键选择多个序号),然后点击“删除”。

      三,利用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) < 10 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


注:相关教程知识阅读请移步到PPT教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表