that’s perfect, thank you!
Here is the final code:
// Fire and Ice present: Accutimer Xposition automator v01
yStart = 940;
yLand = 864;
yEnd = 940;
f = 6; // number of frames
t = framesToTime(f);
landIn = inPoint+t;
landOut = outPoint-t;
y = easeOut(time, inPoint, landIn, yStart, yLand);
if (time >= landOut){
y = easeIn(time, landOut, outPoint, yLand, yEnd);
}
[y];