Hi!
I’m trying to reach something similar myself. A null has two sliders: one that controls an animation with spatial bezier interpolation, an one that controls a linear animation.
I tried to combine both of the expressions Dan mentioned, but only the latter expression works, regardless of the order I put them in. If I try them out separately, they work perfectly.
It looks like this:
s = effect(“Slider1”)(“Slider”);
t = linear(s,0,100,key(1).time,key(2).time)
valueAtTime(t);
f = effect(“Slider2”)(“Slider”);
linear(f,0,100,key(3).value,key(4).value);
Any ideas how to get them both to work? I’d also like to understand why it doesn’t work to start with.