-
edit expression after seperate dimensions
HI all,
I have an expression working great, but I need to edit it because I now need to separate dimensions of my position layer. I need to do this because I have another expression I will apply only to the ‘Y’ position. Here is the expression working great which as you can see only relates to the ‘X’ position.
So can someone please tell me how I can make this expression work once both layers have had their dimensions separated. Then i need to apply this expression to the x only.
gap = -691;
L = thisComp.layer(“MENTION”);
rect = L.sourceRectAtTime(time,false);
x = L.toComp([rect.left+rect.width,0])[0];
[x+gap+width/2,value[1]]So this expression basically moves my text layer to begin after a fixed number of pixels after the ending of another text layer.
Thank you very much