Sebastian Rasche
Forum Replies Created
-
Thank you very much Walter!
-
Nobody asked for compassion Dave. I usually save my client projects accurately. But sometimes you doodle around in after effects and forget to save. That’s where a little startup script would come in handy. Thought somebody knew something.
-
Sebastian Rasche
February 3, 2018 at 3:50 pm in reply to: Center anchorpoint, no matter the content of text fieldSomebody on facebook even shared a simpler expression.
R = thisLayer.sourceRectAtTime();
T = R.top;
L = R.left;
W = R.width;
H = R.height;
[L+W/2,T+H/2]; -
Sebastian Rasche
February 2, 2018 at 5:24 pm in reply to: Center anchorpoint, no matter the content of text fieldSomebody helped me out with this expression:
boxTop = this.sourceRectAtTime().top; // Position of top of text box
boxHeight = this.sourceRectAtTime().height; //Height of textboxboxLeft = this.sourceRectAtTime().left // Position of left of text box
boxWidth= this.sourceRectAtTime().width; //Width of textbox//Offset anchor
[boxLeft + boxWidth/2 , boxTop + boxHeight/2 ];I had a another problem to accour though because I had a text effector on there which screwed with the calculation of the width.
So with the following expression it looks at the text at a certain time. I this case the 50 second marker.boxTop = this.sourceRectAtTime(50).top; // Position of top of text box
boxHeight = this.sourceRectAtTime(50).height; //Height of textboxboxLeft = this.sourceRectAtTime(50).left // Position of left of text box
boxWidth= this.sourceRectAtTime(50).width; //Width of textbox//Offset anchor down from boxTop using half the height of the box
[boxLeft + boxWidth/2 , boxTop + boxHeight/2 ]; -
Sebastian Rasche
February 2, 2018 at 5:18 pm in reply to: Center anchorpoint, no matter the content of text fieldThanks for the reply but it is not working for me unfortunately.
-
I am in the market for a new computer as well and I am going with the 8700k because of this article:
https://www.pugetsystems.com/labs/articles/After-Effects-CC-2017-2-CPU-Performance-Core-i7-8700K-i5-8600K-i3-8350K-1055/Cheers
-
Sebastian Rasche
August 31, 2017 at 3:22 pm in reply to: Specific roll credits issue — greater speed = more jitters per frame?Have a look at this: https://www.omnislashvisual.com/keys-smoother-credit-rolls-w-template/
-
Sebastian Rasche
August 31, 2017 at 1:07 pm in reply to: AE on Ryzen 1700 not performing/rendering even close to expectedIm gonna leave this here:
Cheers
-
Sebastian Rasche
July 10, 2017 at 2:01 pm in reply to: After Effects script to hide and show layer styles.awesome! it works now and is sitting perfectly within my ft-toolbar. Thanks!