Please pardon my JS ignorance, I’m a senior editor with highly limited AE expressions understanding.
I’m trying to accomplish the simple task of having source tex drive scale on another layer ( to ultimately be controlled via text entry within Premiere via Live Text Templates).
L1 = thisComp.layer(“Text 1”).text.sourceText;
[transform.scale[0],parseFloat(L1)];
I found this thread and tried to use the above expression, but its only scaling in the Y axis, and I need uniform X,Y scale values.
I tried several modifications, including:
[transform.scale[0,1],parseFloat(L1)];
But still return the same result.
I’m looking for the most basic, direct control of scale via text entry- as I hear that complex expressions bog down in the LTT – Premiere workflow.
I’ve posted a similar question here on the Adobe AE forum:
https://forums.adobe.com/thread/2422493
Many thanks for any assistance!
Cheers,
D
L1 = thisComp.layer("Text 1").text.sourceText;
[transform.scale[0],parseFloat(L1)];