Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以保存点击动画的最终状态?
您打开演示文稿,单击一个按钮,一些动画,然后可以保存此状态。下次打开演示文稿时,您可以看到动画的最后状态。
我有一个电路图,显示打开或关闭的点。现在你要保存这个状态的点就好了。
问候史蒂文
现在找到了适合我的解决方案...
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
也许有人仍然可以使用它或改进它;-)