Auto-adjusting blinking cursor | After Effects Tutorial

Поделиться
HTML-код
  • Опубликовано: 13 окт 2024

Комментарии • 74

  • @gtiboogiemann
    @gtiboogiemann 6 месяцев назад

    Amazing tutorial perfect for a very specific animation I must do for work!

  • @EvilDogFilmsOfficial
    @EvilDogFilmsOfficial Год назад +40

    For me the formula had to be
    w=effect("Layer Control")("Layer");
    [w.sourceRectAtTime(w.sourceTime()).width]
    Including the sourceTime() to account for placement on the timeline and also clip shifting

    • @imanqoly
      @imanqoly Год назад +4

      your modification saved my day .... thanx

    • @EvilDogFilmsOfficial
      @EvilDogFilmsOfficial Год назад +4

      @@imanqoly The amount of time I found that one comment that saved me hours of headaches, glad I'm finally the one helping someone :D

    • @imanqoly
      @imanqoly Год назад

      @@EvilDogFilmsOfficial 🙌

    • @geoffreybellec8833
      @geoffreybellec8833 6 дней назад

      Saved me too thank you man! 🙏

  • @electriknostalgia
    @electriknostalgia 12 дней назад

    This is exactly what I needed for my project! How do we have the blink cursor stop mid-way through the phrase to pause, and then add a few more blinks midway?

  • @dancu9271
    @dancu9271 2 месяца назад

    A lot of thanks for making and sharing your awesome video!!

  • @dancu9271
    @dancu9271 2 месяца назад

    a lot of thanks for making and sharing your video!!

  • @Soody_choi
    @Soody_choi 2 месяца назад

    감사합니다, 유용했어요. 그런데 한번 봐서는 잘 외워지지 않아서 자주 와서 볼게요. Typewriter 효과중에 가장 마음에 듭니다.

  • @amritaaryan
    @amritaaryan 2 года назад +2

    Gr8 tutorial. Really helpful. One thing I want to add is rather than adding the scale property and then animating it, u can simply use the 'Typewriter' effect from the effects panel. It's just a preset of the same animation. I hope u find it helpful

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад +1

      Awesome! Thanks very much for the tip!

    • @AugustMarlin
      @AugustMarlin Год назад +2

      Only that you have to replace default 'opacity' animator with 'scale', as the width won't change otherwise ;)

  • @MESHK0FF
    @MESHK0FF Год назад +1

    Thanks for idea
    Advantage: Full control over cursor
    Downside: scale range selector will not treat space as scale increase, so cursor will jump through any text space to beginning of the next word, looks a little bit clunky.

  • @JosepMotion
    @JosepMotion 2 года назад

    It worked! This was pretty useful right now. THANKS!!

  • @madebydbm
    @madebydbm 2 года назад

    That's very clever. It's an effect I find myself making a lot but I've always done it manually, hadn't thought to link the cursor to the text width. Thanks!

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад

      Awesome! I used to do it manually as well, which was really annoying. So I started to play around a little bit :)

  • @entidadalan4967
    @entidadalan4967 2 года назад

    Fantastic Manuel. Thank you teacher. So good! ✌🏻🍀💫💫🍀

  • @MayAai00
    @MayAai00 6 месяцев назад

    thank you so much for sharing this!

  • @unfoldlab
    @unfoldlab Год назад

    Magic tutorial!

  • @codelearning9624
    @codelearning9624 4 месяца назад

    Fantastic!

  • @maxmccabe9221
    @maxmccabe9221 Год назад

    Thanks Manuel! I use this all the time. Is there a way to make the cursor go down to the next line after a paragraph break?

    • @ManueldoesMotion
      @ManueldoesMotion  Год назад +2

      That's awesome! I'll think about a way to do it...

  • @nyetre7665
    @nyetre7665 11 месяцев назад

    THANK YOUUU!

  • @1379rooms
    @1379rooms 2 года назад +1

    Amazing tutorial, thanks you for it !
    I have one issue, the whole expression doesn't work if everything is not at the very beginning of my comp.
    To be clear, if the layers are in the middle of my comp, the width value won't change. Do you have any idea why ?
    Tshüss :)

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад +1

      Generally, if you have expressions. Never move layers around, that will mess it up.
      If you want the animation to start later, you need to move the keyframes along your timeline.

    • @1379rooms
      @1379rooms 2 года назад

      @@ManueldoesMotion very clever solution ! thank you so much for the tip :)

  • @KamranKhan-hc2sp
    @KamranKhan-hc2sp 2 года назад

    grate tutorial
    really helped a lot...

  • @onclebobify
    @onclebobify Год назад +1

    Hello Manuel! And thank you for a very nice tutorial. I have a small problem I need your help with. The Width slider is not updating with the right value at the beginning of the animation. So for example, when I have the 4 first letter of my first word the width is still showing 0,00. When the width of the text layer is bigger than the with of my null object then it begins to move the null object. Do you have any idea my I get this delay? I tried resizing the noll object without any success. Thanx again!

    • @ManueldoesMotion
      @ManueldoesMotion  Год назад

      Hi Alexandre, sorry for my delayed response. I am on holiday this week. Could it be the anchor point position of the Null Object? I’ll look into the project next week to see what else it might be.

  • @veryseriousperson
    @veryseriousperson 9 месяцев назад

    Awesome...What if I want to use it in Arabic language which text starts from right to left...I tried to use it but the cursor moves towards the opposite direction..

    • @ManueldoesMotion
      @ManueldoesMotion  8 месяцев назад

      You have to invert the width value. By adding another line:
      w=effect("Layer Control")("Layer");
      inv = w.sourceRectAtTime().width*-1;
      [inv]
      You probably have to adjust the position of the cursor.

  • @hellofilmeditor
    @hellofilmeditor 4 месяца назад

    amazing

  • @JosepMotion
    @JosepMotion 2 года назад

    I was doing a 3 text lines with this.
    I kept getting an strange error when duplicating the 3 items (text, null and cursor) and updating the expressions and even the layer control:
    Null stopped working when updating the "Source Text".
    After a lot of trial and error I was able to fix it, by deactivating the expressions before updating the "Source Text".

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад

      When I need several lines of text, the easiest way for me is to copy the comp in the project window and simply use a separate comp for each line.

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад

      I’ll try it with deactivating the expressions.

  • @daimonxart8253
    @daimonxart8253 11 месяцев назад

    For some reason the null object lags behind the writing, as if it didn't continue but it did just like that, I don't know what it would be.

  • @Martu45919
    @Martu45919 7 месяцев назад

    GRACIAAAAAAAAAAAAAAAAAAAS

  • @vlopez5
    @vlopez5 6 месяцев назад

    Genio total !

  • @samirdesigner3324
    @samirdesigner3324 2 года назад

    thanks
    how make this to presets to we can use to any time by one click ???

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад +1

      You're welcome! I think it can't be saved as preset. I would save the comp somewhere and import it whenever you need it.

  • @Leyero_editor
    @Leyero_editor 2 года назад

    First expression doesn't update slider value, rechecked it multiple times

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад

      You might want to check out the project file…

    • @EvilDogFilmsOfficial
      @EvilDogFilmsOfficial Год назад +1

      For me I needed to do to make sure you don't get any weird time offset based on where the clip is on the timeline and how offseter it is on itself
      w=effect("Layer Control")("Layer");
      [w.sourceRectAtTime(w.sourceTime()).width]

    • @victoriaprado739
      @victoriaprado739 Год назад

      @@EvilDogFilmsOfficial Save me! Thank u!

  • @wasimnatfaji6342
    @wasimnatfaji6342 7 месяцев назад

    Width idea not working if you have multiple lines

  • @thatGreninjaGuy
    @thatGreninjaGuy 2 месяца назад +1

    Not a hate comment but this was very complicated and it didn't work for me . perhaps I did something wrong but I have no idea what was going on and since I did not understand i cannot even spot what went wrong for me, tried watching it 2-3 times and it got more Messier..
    You really need to slow down or maybe explain in a different way.

  • @samirdesigner3324
    @samirdesigner3324 2 года назад

    how to use to RTL ?

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад +1

      What is RTL?

    • @samirdesigner3324
      @samirdesigner3324 2 года назад

      @@ManueldoesMotion right-to-left (RTL)

    • @ManueldoesMotion
      @ManueldoesMotion  2 года назад

      @@samirdesigner3324 That should work as well. You need to right align the text. Then subtract the width from the position instead of adding it.

  • @grafinject
    @grafinject 2 года назад

    Hi :)

  • @TehAuroraWolf
    @TehAuroraWolf 11 месяцев назад +5

    dude you need to slow down a bit with this tutorial. I had to back track so many times because I missed something you said way too quickly to follow through perfectly.

  • @Marforaep
    @Marforaep 2 года назад

    Yo

  • @EricsCastenowDrive
    @EricsCastenowDrive 24 дня назад

    Doesn't fucking work. Good job