|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
利用VBA在PowerPoint添加自定义动画路径
http://ar.newsmth.net/thread-89abc3ebeca4aa-1.html
原创:FinalSoldier (令狐虫),本人做了部分修改。
- Sub AddMotionPath3()
- Dim shpNew As Shape
- Dim effNew As Effect
- Dim aniMotion As AnimationBehavior
- Set shpNew = ActivePresentation.Slides(1).Shapes _
- .AddShape(Type:=msoShape5pointStar, Left:=10, _
- Top:=0, Width:=100, Height:=200)
- Set shpNew = ActivePresentation.Slides(1).Shapes(3)
- Set effNew = ActivePresentation.Slides(1).TimeLine.MainSequence _
- .AddEffect(Shape:=shpNew, effectId:=msoAnimEffectCustom, _
- Trigger:=msoAnimTriggerOnPageClick)
- Set aniMotion = effNew.Behaviors.Add(msoAnimTypeMotion)
- With aniMotion.MotionEffect
- .Path = "M 0 0 L 0.1 0.05 L 0.2 -0.15 L 0.3 -0.05 L 0.4 -0.15 L 0.5 -0.05 L 0.6 -0.15 L 0.7 -0.05 L 0.8 -0.15 L 0.9 -0.05 L 1.0 -0.15 L 0.9 -0.05 L 0.8 -0.15 L 0.7 -0.05 L 0.6 -0.15 L 0.5 -0.05 L 0.4 -0.15 L 0.3 -0.05 L 0.2 -0.15 L 0.1 0.05 "
- End With
- End Sub
复制代码 1.放映时,新增加的形状不可见,只有进行动画时该形状才可见,
2.动作路径不可见,但动作路径是对的。
改的部分:
原作是“.Path = "M 0 0 L 0.17014 0.05157 L 0.27761 -0.15518 L 0.36268 -0.04972 L 0.42987 -0.10338 " ”。
本人是".path=”是现在的。我想让这个图形能来回,当然要是能设置像正弦函数、余弦函数图像曲线、圆曲线、椭圆方程曲线就好了。希望后来者能更好的实现。
感谢原作者。
|
|