Activity › Forums › Adobe After Effects Expressions › Control Paragraph Text Box Size by an expression
-
Control Paragraph Text Box Size by an expression
Posted by Detlef Maerz on January 16, 2023 at 10:34 amHi guy, is it possible to to read out or also change paragraph Text Box Size by an expression?
Andrei Popa replied 3 years, 3 months ago 5 Members · 5 Replies -
5 Replies
-
Manuel Moellmann
January 16, 2023 at 10:47 amit is possible to an extent. its a bit tricky to actually change the paragraph text box but you can surely change its size by expressions.
check out this:
https://creativedojo.net/store/responsive-auto-scale/
-
Yoan Boisjoli
January 16, 2023 at 8:10 pmIf you wanna learn about it while finding out a possible solution, here’s a link to a well explained video: https://www.youtube.com/watch?v=flnRYVMbMmQ
Some contents or functionalities here are not available due to your cookie preferences!This happens because the functionality/content marked as “Google Youtube” uses cookies that you choosed to keep disabled. In order to view this content or use this functionality, please enable cookies: click here to open your cookie preferences.
-
Detlef Maerz
January 17, 2023 at 10:09 amBoth interesting tips. Thanks for that, guys! But I am explicitly thinking about the paragraph text. So resize the frame that is created at the beginning of the paragraph text. Maybe its possible with extend script?
-
Tomas Bumbulevičius
January 17, 2023 at 11:37 amDetlef, it should be possible with extendscript – the question is why/when you want to modify its size?
-
Andrei Popa
January 17, 2023 at 12:52 pmI think you can use this function.
function setBoxSize(myLayer, boxSize){
var textProp = myLayer("ADBE Text Properties")("ADBE Text Document");
var textDoc = textProp;
textDoc.boxTextSize = boxSize;
textProp.setValue(textDoc)
}
Reply to this Discussion! Login or Sign Up