-
Use Slider Control to move y axis of multiple objects at different times?
Hi There!
I’ve use this expression to change the scale of several objects over time:
delay =thisComp.layer(“Sliders”).effect(“Delay amount”)(“Slider”);
d = delay*index;
t = time-d;
exp = thisComp.layer(“Sliders”).effect(“Scale”)(“Slider”).valueAtTime(t);
[exp,exp]But now I need to move several objects (colored squares all sitting on the bottom of the comp) up and off the screen at different times.
I applied this expression to just the y axis and it works, EXCEPT that the object “jumps” to the to Y position. it doesn’t tween.
delay = thisComp.layer(“Sliders”).effect(“Position”)(“Slider”);
d = delay*index;
t = time-d;
exp = thisComp.layer(“Sliders”).effect(“Position”)(“Slider”).valueAtTime(t);any thoughts?
