Well im trying to make it as steamlined and error free as possible. The setup is that you change the text and slide one guide layer to match the left edge of the text, then you dont have to select keyframes and/or be parked on them when you move the positioning.then you are ready to render.
this is what ive figured out so far in order to have the easein (on keyframe 2) and easeout (on keyframe 3) be part of the same expression
——————-
key1 = key(1).time;
key2 = key(2).time;
key3 = key(3).time;
key4 = key(4).time;
keymid = (key3-key2)/2 + key2;
slidevar = 720 – thisComp.layer(“guidefortext”).position[0] ;
if (time < keymid) {
[easeOut(time, key2, key1, 0, position[0] + slidevar),position[1]];
} else {
[easeIn(time, key3, key4, position[0] + slidevar, 0), position[1]];
}
------------