-
Keyframes with Expression
I create lower thirds all of the time.
Often times I use a simple expression to either hide/show the subline depending on if there is text present in the subline or not…easy enough.
That looks something like this:
if (thisComp.layer("subline").text.sourceText.length >0) {
55
} else {
100
}
This time, I’m trying to make the headline scale down if there is a subline present, but I’m getting a pesky “expression result must be of dimension 2, not 1” error.
Does anyone have any suggestions?
