Question
Expression for anchor point position
I'm trying to come up with an expression that will center the anchor point of a transform effect at the bottom.
I did find such an expression, but it's completely messed up if I turn on continuously rasterize:
a = thisLayer.sourceRectAtTime();
height = a.height;
width = a.width;
top = a.top;
left = a.left;
x = left + width/2;
y = height;
[x,y];Is there any adjustment I can do to fix it to working when continuously rasterize is on?
Thank you
