Hi,
Could you please give a clear example of shape animation.
I have a shape with a textframe. I need to animate it to fly in from the right after 2 seconds and float out upwards after 8 seconds. If possible I would also like to control the speed.
I have:
var eff = shape.Slide.Timeline.MainSequence.AddEffect(shape, AnimationEffectType.Float);
var t = new Timing();
t.TriggerDelayTime = 8;
eff.Timing = t;
According to the api docs, AddEffect takes 4 arguments:
public AnimationEffect AddEffect(
IShape shape,
AnimationEffectType animationEffectType,
AnimationEffectSubtype subtype,
AnimationTriggerType triggerType
)
I am using ver3.3 (via nuget), and it seems AddEffect will only take 2 arguments.
So, how do I set the subtype - which controls the direction?
Thanks