View all expressions
Transformation

Responsive Text Box for Two Text Layers

Automatically adjusts a background rectangle size to fit two stacked text layers. Considers padding and distance between texts.

Contributed by:


txt1 = thisComp.layer("text1");
txt2 = thisComp.layer("text2");
// Get source rects
rect1 = txt1.sourceRectAtTime(time);
rect2 = txt2.sourceRectAtTime(time);
// Get world positions
pos1 = txt1.toComp([rect1.left + rect1.width / 2, rect1.top]);
pos2 = txt2.toComp([rect2.left + rect2.width / 2, rect2.top + rect2.height]);
// HEIGHT = vertical distance between top of text1 and bottom of text2
height = Math.abs(pos2[1] - pos1[1]);
// WIDTH = whichever text is wider
width = Math.max(rect1.width, rect2.width);
padding = 100;
// Optional padding
[width + padding, height + padding]

Responsive Text Box for Two Text Layers

Practical use case

Auto-resize text containers for lower-thirds, dual-line titles, or caption panels.

Check out similar expressions

Data-driven video workflows for After Effects are easier with Plainly.

a mesh of elegant lines transparent image