在演示文稿中保存动画的状态

Save the state of the animations in the presentation

是否可以保存点击动画的最终状态?

你打开演示文稿,点击一个按钮,一些东西开始动画,然后可以保存这个状态。 下次打开演示文稿时,您可以看到动画的最后状态。

我有一张电路图,显示了开路或闭路点。现在你必须保存点的这种状态。

问候语 史蒂文

现在找到了适合我的解决方案...

Sub ChangeControlSoft(ByRef oShp As Shape)

If oShp.Line.Parent.Rotation < 35 Then
    oShp.Line.Parent.Rotation = 35
ElseIf oShp.Line.Parent.Rotation = 35 Then
    oShp.Line.Parent.Rotation = 0
End If

End Sub

也许有人仍然可以使用或改进它;-)