I have a text layer and a slider controll, to which I type number of lines. I want the layer to start moving upwards when number of lines is greater than 7. I want it to gradually (ease out) start moving when time is 3,5s and stop once it reaches certain value calculated from number of lines.
I tryed this condition thinking that it will stop moving once one of the conditions will stop being true. Which was false assumption.. it just keeps rising.
lines = effect("lines")("Slider");
maxPos = lines*20;
s = 3.4; //starting time
if (time>s && lines>7 && value[1]>maxPos) //I thought it will stop once 3rd condition starts being false
[value[0],value[1]+((time-s)*-130)] //motion speed
else
value
The ease out expression is not there, because I don't know how to use it though I know it could look like this
easeOut(t, tMin, tMax, value1, value2)