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
【批量删除Powerpoint文件中生成的动画效果的方法】相关文章:
★ PowerPoint2010中如何使用“动画刷”快速设置动画效果
★ 把Word文档快速生成PowerPoint文件的方法(图文教程)
★ 如何把Powerpoint 2010直接转PPT为视频文件详细图文步骤以及遇到音频问题的解决办法
★ 如何在PowerPoint中使文字具有动画效果让PPT幻灯片更有冲击力
★ Powerpoint2010中插入土豆网在线视频教程的方法步骤
★ 比较并合并两个 PowerPoint 2010 文档的图文步骤