怎样一次性删除PPT中所有动画效果

来源:第九软件网时间:2014-06-05 11:11:48

  在PPT中添加插入了很多动画效果,想要一个一个删除未免太过麻烦了,我们在这里使用一些代码技巧来批量删除PPT中所有动画,不懂的朋友们一起来学学。

  通过PPT软件中的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放映设置时把PPT设为“播放时不带动画”就可以达到同样效果。

文章内容来源于网络,不代表本站立场,若侵犯到您的权益,可联系我们删除。(本站为非盈利性质网站) 联系邮箱:rjfawu@163.com