Tom Holmes
Forum Replies Created
-
Tom Holmes
September 3, 2017 at 11:26 am in reply to: Auto fade in/out layers BUT with a defined blinking effectHi Dan, i just wanted to share with you the project I just completed that used you expression. You saved me so much time, thank you:
desktop:
https://youtu.be/dTocBImaFiUSome 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.
-
Tom Holmes
July 10, 2017 at 8:24 pm in reply to: Animate text on per letter using a custom flicker expressionPerfect, you’ve done it again.
Thank you so much!
Tom
-
Tom Holmes
July 10, 2017 at 5:14 pm in reply to: Animate text on per letter using a custom flicker expressionThank you so much Dan! You’re such a huge help.
How could make the letters appear in a random order instead of in sequence?
Thanks
Tom
-
Tom Holmes
July 4, 2017 at 8:36 am in reply to: Auto fade in/out layers BUT with a defined blinking effectamazing that seem to have got it, thank you!
As if you haven’t help me enough, i’d like to try push it a little:
Could this be adapted so that it could be applied to text’s ‘animator’ property so each letter or word (you can choose) would flicker on in sequence or randomly (also choose). Ideally Id like to have a text layer that animates on/off based on the inPoint and outPoint (as it does so beautifully now) except there for would expression controls that allow you to change weather it flickers on as a whole, per word or per letter and also weather each word/letter flickers on in sequence or randomly.
Would this be terribly complicated?
Thanks again for your help Dan, really appreciated.
Tom
-
Tom Holmes
July 3, 2017 at 9:48 pm in reply to: Auto fade in/out layers BUT with a defined blinking effecti’ll have a browse thanks ☺
On further play, It’s behaving a little odd. I’ve duplicated the text and adjusted the length and some of them work as expected and some just cut straight off… if i extend the time of the ones that cut off to a longer then they do the flicker… its seems random as to if they work or not.
Thanks
Tom
-
Tom Holmes
July 3, 2017 at 9:37 pm in reply to: Auto fade in/out layers BUT with a defined blinking effectDan you’re a frikkin genius. You’ve solved it yet again.
I understand the top half but If you’ve got a sec, could you briefly explain whats happening from ‘switch(f){‘ onwards? What is switch, break and case?
Thank you!
Tom
-
Tom Holmes
November 4, 2015 at 1:24 pm in reply to: After Effects Scripts – Create a new comp from project item.its the first step in a more complex function. sorry i should have clarified this.
-
Tom Holmes
October 13, 2015 at 9:21 am in reply to: How to pick whip to scale but add an amount to it.Hey Valerie.
You could indeed add ‘+100’ to the scale but then the second circle will always be 100 larger than the first, whether the first circle is set to 0 or 10000. If this is what you’re after then i would use the following on the second circle’s scale:
(italics are your layers names)[thisComp.layer(“Cirlce_1“).transform.scale[0]+100,thisComp.layer(“Cirlce_1“).transform.scale[1]+100]
to make it more controllable, id add a sider controller to your second circle and instead of typing “+100” in the expression, pickwhip to the controller. That way you don’t have to keep going in to change your value.
If however you want the size increase to be relative, id increase the second by a percentage, not a constant value.
what i would do is add a slider controller to the second circle and then in the second circle’s scale expression add the following:
(italics are your layers/slider names)s=(thisComp.layer(“Cirlce_1“).transform.scale[0]/100)*effect(“2nd_Circle_Increase_%“)(“Slider”);
[thisComp.layer(“Cirlce_1“).transform.scale[0]+s,thisComp.layer(“Cirlce_1“).transform.scale[1]+s]s will take the scale of the first circle, divide it by 100 and then multiply it by the slider controller value. This then means the slider can be used to input a percentage of the first circle’s scale. The second part will take the two scale dimensions and add the value of the slider. Now if you set the slider to 50, the second circle will always be 50% larger than the first.
This will means the second circle will scale RELATIVE to the first.
hope this helps!
Tom 🙂
-
Thank very much Dan! right as always 🙂
Tom
-
Tom Holmes
October 12, 2015 at 11:32 am in reply to: Play stops or skips over sections of frames in preview.you can tick the ‘from current time’ box in the preview panel to ram preview from the point of the playhead.