Self Resizing Shapes to Text | After Effects Pro Tutorial

  Рет қаралды 63,555

Maxwell Ridgeway

Maxwell Ridgeway

6 жыл бұрын

Join the discord to talk film and animation, any time, anywhere!
/ discord
Suport me on Patreon!
/ maxwellridgeway
Download the Expression + Project file here
www.mediafire.com/file/l8tfti5...
Expressions (There's three, First one is the main one.)
margin = 50;
text_width = thisComp.layer("Text").sourceRectAtTime().width;
text_height = thisComp.layer("Text").sourceRectAtTime().height;
box_width = text_width + margin*2;
box_height = text_height + margin*2;
[box_width, box_height]
text_height = thisComp.layer("Text").sourceRectAtTime().height;
[0, text_height/2]
t = thisComp.layer("Text");
tRect = t.sourceRectAtTime(time,false);
tUL = t.toComp([tRect.left,tRect.top]);
tLR = t.toComp([tRect.left+tRect.width,tRect.top+tRect.height]);
tCenter = (tUL + tLR)/2
myRect = sourceRectAtTime(time,false);
myUL = toComp([myRect.left,myRect.top]);
myLR = toComp([myRect.left+myRect.width,myRect.top+myRect.height]);
myCenter = (myUL + myLR)/2
delta = myCenter - tCenter;
value - delta
Click to subscribe for more!
goo.gl/GlLKKW
Connect on Social Media
/ maxwellridgeway
/ maxwellridgeway
My Gear
Cameras
Main workhorse the GH5
B&H - bhpho.to/2fBAqDh
Amazon - amzn.to/2fU4PJR
Secondary Camera 70D
B&H - bhpho.to/2fBAqDh
Amazon - amzn.to/2fBoDVy
Lenses
Main Lens Sigma 18-35
B&H - bhpho.to/2wYSoqL
Amazon - amzn.to/2yIX9C5
Wide Lens Canon 10-22
B&H - bhpho.to/2fBKpJ3
Amazon - amzn.to/2xEJTyq
Cheaper Wide lens
B&H - bhpho.to/2wZur2C
Amazon - amzn.to/2yLjWNw
Lens Adaptors for GH5
Expensive adaptor
B&H - bhpho.to/2fCaQhC
Amazon - amzn.to/2ycqQyB
Cheap adaptor
Amazon - amzn.to/2xIQTvD
Tripods
Joby
B&H - bhpho.to/2wYXm7d
Amazon - amzn.to/2xN7aA5
You need this for the amazon Joby - amzn.to/2xEIKqr
Main tripod
B&H - bhpho.to/2fClXqS
Amazon - amzn.to/2xJm2iH
Cheap Tripod
Amazon - amzn.to/2wXVKKB
Sound Gear
Voiceover Mic
B&H - bhpho.to/2xvBLDe
Amazon - amzn.to/2fCLqAx
Voiceover mic recorder
B&H - bhpho.to/2wYZVWP
Amazon - amzn.to/2xF27Qd
External Recorder
B&H - bhpho.to/2fAxSFs
Amazon - amzn.to/2fUx0Z8
Shotgun Mic
B&H - bhpho.to/2fDUZit
Amazon - amzn.to/2xNcDqH
Amazing Lavs
B&H - bhpho.to/2wZ0TlV
Amazon - amzn.to/2xIZJtf
Camer Mic
B&H - bhpho.to/2wYUpTR
Amazon - amzn.to/2xJlAkD
Lighting
Ring light
Amazon - amzn.to/2fUdHiF
Edison Bulb in the background
Amazon - amzn.to/2yIYqcl
LED lighting
Amazon - amzn.to/2xFWWiS
Have a video idea? Submit it here!
goo.gl/e4Q6p4
and be sure to check out my stock portfolio at
www.pond5.com/artist/ridgeway411
Today we learn how to auto scale shapes to text in after effects, some may call it Self Resizing Shapes!

Пікірлер: 139
@airey773
@airey773 3 жыл бұрын
Dear cthutlu on a bicycle you have saved me a massive headache. You now have a fan for life. Meaningless as I'm old and a mediocre human, but still, it's something. Thanks man.
@Pieprucz
@Pieprucz 7 ай бұрын
For total AE noobs like myself 😀 If you want to change the displayed text throughout the length of the composition. You don't have to copy Text and Shape layers and edit the text layer name in the code with each copy. You can just use "Source Text" option in the text layer drop down menu. Thx Maxwell!!
@thedailyhappening416
@thedailyhappening416 3 жыл бұрын
You deserve a like. I knew it was somewhere on the internet. You brought me to it. Thank you.
@DaveSy
@DaveSy 4 ай бұрын
Subscribed. This is how all tuts should be! Huge value in this.
@DJJulzNJ
@DJJulzNJ 2 жыл бұрын
Excellent video! Helped so much! thank you Maxwell!
@samprimal8910
@samprimal8910 5 жыл бұрын
Your vids are great. Thanks so much, you've helped me learn and accomplish so many things in AE!
@BrendanWilliamsTutorials
@BrendanWilliamsTutorials 5 жыл бұрын
Thanks brotha!
@MASSIF101
@MASSIF101 3 жыл бұрын
This was great, so concise and to the point and so easy to follow!
@jamesbird8603
@jamesbird8603 5 жыл бұрын
Brilliant! Thanks you've really helped me with something here. Question though, I have a text box which has a fixed position, I need the box to expand upwards and the text remain aligned to the bottom of the shape, so it would grow UP. I can get the shape to expand upwards but I want the text to shift upwards when I might go on a second line of text? Does that make sense?
@BooneLovesVideo
@BooneLovesVideo 6 жыл бұрын
Legend! Only found a few other tuts on this, and this one worked the best. If you don't mind sharing, where did you find the expressions? A particular site/tutorial? I've seen a few other versions, but this is my favorite. Thanks again!
@ianbowles7173
@ianbowles7173 3 жыл бұрын
Thanks for the script. worked like a charm. I added an if()else statement, so if the text width drops to zero (if you are animating text for captions or something) , the box width also drops to zero (ignores the margin). if (text_width ==0) box_width = text_width else box_width = text_width + margin*2;
@MaxwellRidgeway
@MaxwellRidgeway 3 жыл бұрын
Oh awesome, great addition. Thanks for that!
@DanceChicks
@DanceChicks 6 жыл бұрын
Great vid Maxwell!
@user-pp2zo4by7q
@user-pp2zo4by7q 5 жыл бұрын
This is fantastic! Thanks man!
@samuelanderson3952
@samuelanderson3952 6 жыл бұрын
Loved it! Do you know how I make the shape match if we’re using scale instead of size? For example non square/circle shape layers? Thanks either way!! Love the vids!!!!!
@user-pt5ke4fg4t
@user-pt5ke4fg4t 3 ай бұрын
Amazing tutorial.... Thank you.
@danielpinocarmona6086
@danielpinocarmona6086 4 жыл бұрын
Súper, muchas gracias por compartir!
@dancu9271
@dancu9271 Ай бұрын
a lot of thanks for making and sharing your video!!
@modeun-users
@modeun-users 5 жыл бұрын
Oh my god this is exactly what I needed. Thank you so much. Liked and Subscribed!!
@skgems1558
@skgems1558 Жыл бұрын
Great video, very well explained. Thanks.
@Rioni
@Rioni 6 жыл бұрын
Cool! And it gets even better if you create a slider for the marging for example, this is really useful :D The only bad thing is that I don't know how to change the scale unless I precomp it
@matthijstrenite958
@matthijstrenite958 5 жыл бұрын
LEGEND! Helps me a lot!
@maynardoocara1
@maynardoocara1 Жыл бұрын
Thanks a lot! Great video, great tutorial!
@DmitroDubskiy1248
@DmitroDubskiy1248 Жыл бұрын
Thanks! You helped a lot!
@signalh9958
@signalh9958 10 ай бұрын
Great video thank you so much!
@jp3young
@jp3young 5 жыл бұрын
Hey Maxwell, this video was extremely helpful. Is there a way to find the center by just using the left and right dimensions of the text rectangle? I'm linking this to a .json file to swap out data easily and depending on the letter height, it is moving the shape up and down. I just need it to move the shape left and right and maintain a constant position on the y axis...
@holke79
@holke79 2 жыл бұрын
Good one! Thanks
@a7xforeverfan608
@a7xforeverfan608 3 жыл бұрын
Thanks man! very good tutorial!
@MaxwellRidgeway
@MaxwellRidgeway 3 жыл бұрын
Thanks for watching! Stick around for more!
@goodgoud3107
@goodgoud3107 5 жыл бұрын
Nice! Thanks a lot!
@PhunPhun28
@PhunPhun28 5 жыл бұрын
Great tutorial !! But if I want 2 more rectangle shapes with more text in one composition and then... How I can do it? :(
@ksspang
@ksspang 6 жыл бұрын
Hey Max, do you know how to do this, except with adjustment layers instead of shape layers? I have an adjustment layer underneath, doing a box blur to make the text more legible over the video, and I have to use a shape layer as a stand-in for the alpha matte, but I'd like to keep it to just the two layers. Happy to work some masks in there if needed, but I'm stumped. Thanks!
@oliverryan2388
@oliverryan2388 3 жыл бұрын
Amazing! Thank you for sharing
@masoudnooshinfar4707
@masoudnooshinfar4707 3 жыл бұрын
Hey man , It was awesome actually ! but I have a question , with if it was a path ! in mean instead of using rectangle we use some deform path! ? could U help me with that?
@matiaslugones
@matiaslugones 2 жыл бұрын
THANK YOU SO MUCH! I LOVE YOU!
@ajproart2
@ajproart2 6 жыл бұрын
✌🏼😎 Clear & precise. Thanks!
@MaxwellRidgeway
@MaxwellRidgeway 6 жыл бұрын
Awesome.
@pipzaman123
@pipzaman123 5 жыл бұрын
Awesome, thank you!
@MaxwellRidgeway
@MaxwellRidgeway 5 жыл бұрын
Thanks for watching!
@josephinvoneichen
@josephinvoneichen 2 жыл бұрын
I LOVE YOU! Thank you so much, you don't know how much you'd help me with that! You're genius :0)
@MrNumber112
@MrNumber112 6 жыл бұрын
Always cool Max, Thank you ;)
@MaxwellRidgeway
@MaxwellRidgeway 6 жыл бұрын
Thanks for watching!
@jouriverhoeven
@jouriverhoeven Жыл бұрын
Thanks still works :)
@historygeek_
@historygeek_ Жыл бұрын
Mine doesn't work properly
@sensesanimation
@sensesanimation 2 жыл бұрын
Thank you pal. Very usful!
@ahmedelghandour7063
@ahmedelghandour7063 3 жыл бұрын
Thank you.
@juangerardo1310
@juangerardo1310 5 жыл бұрын
YOU ARE GREAT! THANKS MAN!
@MaxwellRidgeway
@MaxwellRidgeway 5 жыл бұрын
THANK YOU JUAN!
@marcsrel4mpn
@marcsrel4mpn 3 жыл бұрын
Hi Maxwell, I love this tutorial but is there a way to combine this the typewriter text animation preset?
@Lilqueen._
@Lilqueen._ Жыл бұрын
you're a genius! thanks!
@dkamhaji
@dkamhaji 8 ай бұрын
great video! what if we need a specific margin on the left and right side, and top and bottom. is there a way to make a variable for each side?
@PollakritK
@PollakritK 6 жыл бұрын
Nice! Thank you
@MaxwellRidgeway
@MaxwellRidgeway 6 жыл бұрын
Thanks for watching!
@GuidoVasconcelos
@GuidoVasconcelos 3 жыл бұрын
Thanks man!!!!!
@tomnapper5010
@tomnapper5010 5 жыл бұрын
This is awesome. Are you aware of a way to create seperate rectangles for multiple lines? I.e one box for one line, then overflow to a second when two lines. I can't get my head around it!
@freshtv3276
@freshtv3276 5 жыл бұрын
Thanks Mex!
@MaxwellRidgeway
@MaxwellRidgeway 5 жыл бұрын
You're welcome!
@itskamiar
@itskamiar 3 жыл бұрын
Thank you
@erikciscam
@erikciscam 4 жыл бұрын
GREAT VIDEO MAN!
@MaxwellRidgeway
@MaxwellRidgeway 4 жыл бұрын
Thanks!
@drewscottdavis
@drewscottdavis 5 жыл бұрын
Dan Ebberts is a god at writing expressions
@yamirbhatt
@yamirbhatt 3 жыл бұрын
What if the background needs to be a circle? Would it be possible to have the circle change size based on text inside it?
@thissvlad
@thissvlad 3 жыл бұрын
Hi! Can i link another shape to the border of text box? So that another shape moves with a text box when i type the text?
@davidzap
@davidzap 4 жыл бұрын
ADDITION 1: you can use a variable called "text_layer_name" to put the name of the layer just once. ADDITION 2: If you want to use it for subtitles you can add an IF statement to set the with to 0 id the text layer is empy. (to prevent the margin to make visible a little rectangle when there is no text)... (Expand to see the code) layer_name = "Text"; margin = 20; text_width = thisComp.layer(layer_name ).sourceRectAtTime().width; text_height = thisComp.layer(layer_name ).sourceRectAtTime().height; if( text_width > 0){ box_width = text_width + margin*2; }else{ box_width = 0; } box_height = text_height + margin*2; [box_width, box_height]
@ariesnathaniel2245
@ariesnathaniel2245 2 жыл бұрын
I guess Im asking randomly but does anybody know of a method to get back into an instagram account?? I was dumb forgot my account password. I love any tricks you can give me!
@franklinpeter6067
@franklinpeter6067 2 жыл бұрын
@Aries Nathaniel instablaster =)
@ariesnathaniel2245
@ariesnathaniel2245 2 жыл бұрын
@Franklin Peter thanks for your reply. I found the site on google and I'm waiting for the hacking stuff atm. I see it takes quite some time so I will get back to you later with my results.
@ariesnathaniel2245
@ariesnathaniel2245 2 жыл бұрын
@Franklin Peter It worked and I actually got access to my account again. Im so happy:D Thank you so much you really help me out!
@franklinpeter6067
@franklinpeter6067 2 жыл бұрын
@Aries Nathaniel you are welcome :D
@cj.blackedits3289
@cj.blackedits3289 3 жыл бұрын
I'm trying to use this resize expression on a shape that i've changed to bezier path and that size keyframer isn't there so I'm unable to put in the expression under that, doesn't work on 'scale' or anything. any amends?
@yieki1
@yieki1 7 ай бұрын
Thanks heaps for this. I just found you and I'm going to sub.
@kevinboutros7972
@kevinboutros7972 2 жыл бұрын
How to make an outside shape react accordingly? And can you give us expression details?
@fastestfckboi
@fastestfckboi Жыл бұрын
damn broooo such an underrated video
@thedinardi
@thedinardi 4 жыл бұрын
Does anyone know if there is a way to do this without using text as the source? I have a container that I want to auto scale depending on the logo I drop into it.
@Koozmich
@Koozmich 4 жыл бұрын
A lil update. If you do not want to rename your text layer, you may use the following way: 1) Add the following text to every script: var textName = thisComp.layer(thisLayer,+1).name; 2) Change the corresponding strings in the scripts to the following: I. text_width = thisComp.layer(textName).sourceRectAtTime().width; text_height = thisComp.layer(textName).sourceRectAtTime().height; II. text_height = thisComp.layer(textName).sourceRectAtTime().height; III. t = thisComp.layer(textName); And just place the Text Layer under the Shape Layer ;)
@summerburst2221
@summerburst2221 3 жыл бұрын
AWESOME!
@justinkfilms
@justinkfilms 5 жыл бұрын
Great video! You helped me to achieve exactly what I needed ;) Now I can create auto-scaling titles and use them as MOGRT in Premiere! Thanks so much)
@MaxwellRidgeway
@MaxwellRidgeway 5 жыл бұрын
Awesome! I'm really happy you liked it!
@ValerieToumayan
@ValerieToumayan 2 жыл бұрын
Hey! It's impossible to animate the size of the box, in "Rectangle path" Is I want the box to size up before the text arrive, I can only do it, with the basic Size option, but then it squeeze the outline...not nice... Any ideas how to fix this?
@daniel_morbin
@daniel_morbin 10 ай бұрын
Nice! Does somebody knows if theres a way to make in this shape a mask that also follows the text?
@TheRevan5576
@TheRevan5576 4 жыл бұрын
3:11 When he called the pick whip a squiggly I died
@EnioMaciel
@EnioMaciel Жыл бұрын
awesome! Really useful. Now I'm following you and I want to give you a hug!
@Flavio_S
@Flavio_S Жыл бұрын
Can you show how to make it work with Bezier Paths shape layers? Cause I have a client who's asking me for a shape layer that has 3 rounded corners except one square
@camdaman377
@camdaman377 6 жыл бұрын
This is really helpful and awesome! Here is my question though: I would love to do an expression like this, but with a more complex vector shape that I created in Illustrator and imported into AE. Any thoughts on how to resize vector shapes to text without distorting the complex shape?
@stevenfreebairn2553
@stevenfreebairn2553 5 жыл бұрын
You might want to convert to shapes, then look at the Create Nulls From Paths script to then make an expression affecting the positions of the points.
@ahmedaziz287
@ahmedaziz287 10 ай бұрын
when i use type effects on the text, the animation does not affect the box (still big) i need it to start appearing with the text?
@mimimiday6973
@mimimiday6973 4 жыл бұрын
Круто! круто! круто!)) спасиБо)))
@virajharshana1206
@virajharshana1206 5 жыл бұрын
Awesome tip man. Thanks alot. Is that working on CS6 ? I get the following error. After Effects warning: Function thisComp.layerasourceRectAtTime is undefined Expression disabled. Error occurred at line 2. Comp: 'Comp 1' Layer: 2 (Shape Layer 1) Property: 'Size'
@jecamartinez
@jecamartinez 5 жыл бұрын
Hi! What if I'd like to have the option to type out two lines for the text? The box I made doesn't automatically stay centered to the text when there's more than one line :(
@tomnapper5010
@tomnapper5010 5 жыл бұрын
I had the same problem until I applied all three expressions. Maybe that helps?
@chethankvs6256
@chethankvs6256 6 жыл бұрын
Can you make a Tutorial on the Basics of expressions? What Expression contains and what the values means and things like that!
@MaxwellRidgeway
@MaxwellRidgeway 6 жыл бұрын
I can !
@nlokesh1717
@nlokesh1717 5 жыл бұрын
How to save the above as an preset template?
@dbrammelljr
@dbrammelljr 9 ай бұрын
I have no idea why, but when I'm using the expression when there is an animation property on the text and animating the offset, the box continually resizes during the offset keyframing. the text size is not changing though, just the position.
@ManuSlime
@ManuSlime 4 жыл бұрын
How to use Only For text Purpose with out Box ?
@dwainehiggins4451
@dwainehiggins4451 4 жыл бұрын
How to grow the shape from just one side?
@AB-ox1dn
@AB-ox1dn Жыл бұрын
Well, figured?
@jasonjensen011
@jasonjensen011 Ай бұрын
Homie just dropped this tut and wont answer questions. Don't worry, I got u kzbin.info/www/bejne/opO5YautoK-CmZI
@onurcelik2140
@onurcelik2140 6 жыл бұрын
gj sir
@joedsgn8864
@joedsgn8864 5 жыл бұрын
1000/1000 :)
@SMOKESTRA
@SMOKESTRA 4 жыл бұрын
Best
@shuvrapodder
@shuvrapodder Жыл бұрын
what if they are in different precomp?
@nanes9914
@nanes9914 5 ай бұрын
What if I want it to always have the same width and only resize it vertically? I tried removing the width dimensions but it messes up the expression
@cardermedia
@cardermedia 5 жыл бұрын
Hi, what do you do if you have left-justified text?
@silasgotsch4458
@silasgotsch4458 5 жыл бұрын
I have the same question. Anyone know an answer?
@leeaverne
@leeaverne 5 жыл бұрын
Try left aligning your text under the 'Paragraph' tab. That worked for me, hope that helps!
@lowdandcleer
@lowdandcleer 5 жыл бұрын
Works great, but when I went to use it for subtitling, the box expands a split-second before the text changes. Is there any workaroud for this? Just to be clear, I'm using keyframes to change the text on-screen, in sync with a voiceover. The box shifts in size about a half-second before the text changes. Maybe there's a way to add a delay on the transformation code to compensate?
@lowdandcleer
@lowdandcleer 5 жыл бұрын
George Follen i thought it might be just a question of adding time..just didn’t know how. Thank you I’ll try it! :)
@georgefollen396
@georgefollen396 5 жыл бұрын
Cool, hope it works!
@jimmymac4926
@jimmymac4926 Жыл бұрын
@@georgefollen396 I know this is 3 years old but I can't see what workflow you added for this query in the comments, could you pls re-send? Thanks!
@ArtByAliHaider
@ArtByAliHaider 6 жыл бұрын
Hi Maxwell, I copied the expressions from the description and pasted in the expression box of my shape layer but it says" After Effects warning: Function thisComp.layer().sourceRectAtTime is indefined Expression disabled. Error occured at line 2. Comp: Comp 1' Layer: 5 ('Shape Layer 1') Property: 'Size' Please help, Thank you!
@retrohunt3207
@retrohunt3207 5 жыл бұрын
Hi! What if I want to fix the left side of the shape so it only scales to the right and doesn't expand to the left?
@DenverMcQuaid
@DenverMcQuaid 5 жыл бұрын
Takes some extra expression work as follows: Move anchor points to be left aligned Create a Null and add a Slider effect to it. Add expression to the Null Position: [value[0]- thisComp.layer("NAME OF NULL").effect("NAME OF SLIDER")("Slider"),value[1]]; Use the Slider to adjust X position if needed On your Text Background/Shape add to Position: var xpos = content("Group 1").content("Rectangle Path 1").size[0]/2 - thisComp.layer("NAME OF NULL").effect("NAME OF SLIDER")("Slider"); var ypos = (content("Group 1").content("Rectangle Path 1").size[1]/2)+80; [xpos,ypos] ***NOTE*** The +80 at the end of the shape expression is subject to your project. May need to adjust or may not need at all. Used to recreate Facebook comments for a project. Various adjustments to padding and margins allow for extra spacing if needed. Everything will scale properly.
@samicklow5086
@samicklow5086 4 жыл бұрын
@@DenverMcQuaid Thanks! I'm trying to do this too, but I get an error: "property or method in 'Group 1' in class 'Group' does not exist" .... any idea why or where to point me to understand why?
@samicklow5086
@samicklow5086 4 жыл бұрын
I figured this out actually -- if you have your anchor points for text and shape both to the left and have the text aligned left before you begin applying expressions, it works out in the end!
@harrywinter7769
@harrywinter7769 2 жыл бұрын
@@samicklow5086 I still can't figure out that error you typed "property or method in 'Group 1' in class 'Group' does not exist"
@RobHeeney
@RobHeeney 6 жыл бұрын
How would you alter the expression for left justification as in a Lower Third?
@MaxwellRidgeway
@MaxwellRidgeway 6 жыл бұрын
Just make sure your text is left justified and positioned correctly on screen. Does that answer your question?
@RobHeeney
@RobHeeney 6 жыл бұрын
Thanks
@MrMnmn911
@MrMnmn911 6 жыл бұрын
Maxwell, the link says it violates the terms of service. It's disabled. :-(
@MaxwellRidgeway
@MaxwellRidgeway 6 жыл бұрын
Fixed!
@MrMnmn911
@MrMnmn911 6 жыл бұрын
YAY! Thanks!
@ianerivera4198
@ianerivera4198 4 жыл бұрын
i followed your entire tutorial but mine keeps saying After Effects warning: Function thisComp.layer().sourceRectAtTime is undefined. Expression is disable. i don't really know what to do now
@accountingfourme6663
@accountingfourme6663 5 жыл бұрын
Very useful vid but seems doesn't work with text that has tracking animation
@MaxwellRidgeway
@MaxwellRidgeway 5 жыл бұрын
We figured that out!
@israelgalindo6600
@israelgalindo6600 6 жыл бұрын
expressions does not pop up when i left click colding the command button
@craveleaks8102
@craveleaks8102 6 жыл бұрын
Press ALT and while holding it left click on stopwatch button.
@artboolat
@artboolat 3 жыл бұрын
not working with several rows of text :(
@qinghillstudio
@qinghillstudio 3 жыл бұрын
This wont work on old version (CS6 for me)
@nahasco
@nahasco 4 жыл бұрын
This doesnt work on the latest After effects version
@dafilmktoregopotrzebujesz4995
@dafilmktoregopotrzebujesz4995 4 жыл бұрын
yes ;( not working Error in line 5
@dasvidaniya3817
@dasvidaniya3817 6 жыл бұрын
Does this work on CS6?
@MaxwellRidgeway
@MaxwellRidgeway 6 жыл бұрын
This method does yes!
@virajharshana1206
@virajharshana1206 5 жыл бұрын
I get this error After Effects warning: Function thisComp.layerasourceRectAtTime is undefined Expression disabled. Error occurred at line 2. Comp: 'Comp 1' Layer: 2 (Shape Layer 1) Property: 'Size'
@adegbengaojoyido550
@adegbengaojoyido550 2 жыл бұрын
thaks sir but i dont know why my is ivin me hero sir
@ChristineDeer
@ChristineDeer Жыл бұрын
This just crashed my After Effects and I can't open the file now. It crashes every time I try to open it. If you are going to try this, duplicate the file or make a new one, and do not use your original file. I just lost 8 hours of my time. :(
@ryancollinsvideoads8228
@ryancollinsvideoads8228 4 жыл бұрын
After Effects standing in the kitchen
@bigautismososa3012
@bigautismososa3012 4 жыл бұрын
1000000000000000000 tutorials about how to resize the shape and 0 about how to resize the text
sourceRectAtTime(); | After Effects Expressions
34:33
Jake In Motion
Рет қаралды 130 М.
Auto-resizing Text Box With No Expressions! - Adobe After Effects Tutorial
10:19
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27
The day of the sea 🌊 🤣❤️ #demariki
00:22
Demariki
Рет қаралды 105 МЛН
3M❤️ #thankyou #shorts
00:16
ウエスP -Mr Uekusa- Wes-P
Рет қаралды 13 МЛН
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 15 МЛН
Scale Shape Layer From Corner Without Distorting Roundness
4:50
Motion Caddy
Рет қаралды 22 М.
Create Your Own MOGRT Files in After Effects for Premiere
12:02
Brooker Films
Рет қаралды 78 М.
How to create responsive textbox with left-aligned text
2:46
David Lindgren
Рет қаралды 23 М.
Auto Resizing Dynamic Lower Thirds in After Effects | Tutorial
8:19
Manuel does Motion
Рет қаралды 32 М.
How to Auto-Size Text to a Shape Layer in After Effects
26:38
ukramedia
Рет қаралды 45 М.
Control Time in Templates - Adobe After Effects tutorial
10:35
Auto-Resize Text Layers with Expressions in After Effects
4:57
Revealing Text with Shapes - After Effects Tutorial
6:22
Caleb Lancaster
Рет қаралды 1,4 МЛН
Create Callout Titles For Your Footage | After Effects Tutorial
11:43
How to resize without distort
2:18
David Lindgren
Рет қаралды 38 М.
Папа помог Дочке 🥹❤️ #shorts #фильмы
0:30
Жайдарман | Туған күн 2024 | Алматы
2:22:55
Jaidarman OFFICIAL / JCI
Рет қаралды 1,6 МЛН