首页 > 办公 > PowerPoint > 正文

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

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

   通过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设为“播放时不带动画”就可以达到同样效果。


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