-
expression affecting expression
Hey guys! I already apologize for the google translation.
I have following path in a text layer:
Text layer A > Animatior 1 > Expression Selector 1 > Amount
where I apply the following expression:
delay = effect("Delay")("Slider"); myDelay = delay*textIndex; t = (time - inPoint) - myDelay; if(t >= 0){ freq = effect("Frequency")("Slider"); amplitude = effect("Amplitude")("Slider"); decay = effect("Decay")("Slider"); s = amplitude*Math.cos(freq*t*2*Math.PI)/Math.exp(decay*t); [s,s]; }else{ value}
To animate texts with transform properties.
however when I apply the following expression in the position property on text layer B:
[thisComp.layer("Text layer A").sourceRectAtTime().width + value[0], value[1]]
in order for this text layer A to follow the width of a text layer B, it has a whip (an odd movement) when the animation of text layer A ends. How can I resolve this?