After Effects: How To Create A Countdown Timer

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

ความคิดเห็น • 37

  • @dokhtK25
    @dokhtK25 5 หลายเดือนก่อน +2

    I've searched so much for this and no one explained the math.round bit in a beginner friendly way, it was driving me crazy. Thank you so much for this! It was a life saver!

    • @MikeMurphyCo
      @MikeMurphyCo  5 หลายเดือนก่อน

      So glad it helped! You might also find this one helpful. Instead of using Math.round, this one uses value.toFixed which is quite easy and gives you full control over number of decimals (leave blank if you want rounded numbers). 👍
      th-cam.com/video/Jm4wjq_Vsn0/w-d-xo.htmlsi=VllAe8Q5-6ojLKLu

    • @dokhtK25
      @dokhtK25 5 หลายเดือนก่อน +1

      @@MikeMurphyCo cool, I will definitely check that out too! Thanks a lot!✌🏻

  • @CalmSoundsGood
    @CalmSoundsGood ปีที่แล้ว +1

    Concise, accurate and a with great, easy-going style. There few instructors with your talent to actually teach. Thank you!

    • @MikeMurphyCo
      @MikeMurphyCo  ปีที่แล้ว +1

      That means a lot and I very much appreciate it! Thank you. 👊

  • @pixietwo
    @pixietwo 2 ปีที่แล้ว +1

    Thank you for making everything so clear so that even I can understand it :)

  • @pavankumarp45
    @pavankumarp45 5 หลายเดือนก่อน

    Of all the videos out there, this is the most simple and effective tutorial I've ever seen. Thank you murphy...

    • @MikeMurphyCo
      @MikeMurphyCo  5 หลายเดือนก่อน

      I really appreicate that...thanks!
      You may also find this tutorial helpful as it makes rounding the numbers a little easier and you can control the number of decimal places....using toFixed() instead of mathRound:
      th-cam.com/video/Jm4wjq_Vsn0/w-d-xo.html

    • @pavankumarp45
      @pavankumarp45 5 หลายเดือนก่อน

      @@MikeMurphyCo Is there any video of yours that could use circle animation with timer ?

    • @MikeMurphyCo
      @MikeMurphyCo  5 หลายเดือนก่อน

      @@pavankumarp45 Can you provide some more detail of your end goal? What are you wanting to create?

  • @cand1ss
    @cand1ss ปีที่แล้ว +2

    Amazing tutorial! You have a wonderful teaching style. You are very easy to follow and I love how you anticipated every obstacle that popped in my head like the decimals and how to center everything. This was just what I needed. You make such helpful videos and really deserve way more subscribers. Thanks!

    • @MikeMurphyCo
      @MikeMurphyCo  ปีที่แล้ว +1

      That is really kind of you and if means a lot to mean to hear. Thank you so much! All good things in all good time!

  • @SiggeLindhe
    @SiggeLindhe ปีที่แล้ว

    A couple of neat tricks there, well explained too. Thanks!

  • @Aji-Nchre7Lik
    @Aji-Nchre7Lik ปีที่แล้ว +1

    I just discovered your channel you're doing amazing videos. You deserve more than 1million subscribers

    • @MikeMurphyCo
      @MikeMurphyCo  ปีที่แล้ว +1

      I really appreciate that and hope to reach that milestone one day! Thank you!! 👍👍

  • @SunsetRC
    @SunsetRC 9 หลายเดือนก่อน

    Thanks for the clear and consise instruction. I've tried this same method from several other tutorials on YT and there's an issue with it. The starting second is always shorter then the rest. For example if you have a 5 sec countdown, the countdown jumps quickly between 5 and 4 and then the remaining seconds are fine. I'm still looking for a solution. I've spent 8 hours on this today.

    • @SunsetRC
      @SunsetRC 9 หลายเดือนก่อน

      The only solution I have found was to set the countdown to 1 second higher. For example, I need a countdown of 5 seconds but instead make it 6 seconds, then export the animation. Then I import the clip into Premiere Pro and CHOP the number 6. Kinda lame but it works. Thanks.

    • @MikeMurphyCo
      @MikeMurphyCo  9 หลายเดือนก่อน

      Does this happen on the final rendered/exported video or just when previewing the playback?

  • @RiverHampton
    @RiverHampton 6 หลายเดือนก่อน

    Great video, thank you :) Do you know if there's a way to have only two decimals showing instead of removing them all?

    • @MikeMurphyCo
      @MikeMurphyCo  6 หลายเดือนก่อน

      Thanks!
      Skip the step about adding Math.round and just add the following snippet of code after ("Slider"). The number in parentheses is the number of decimal places.
      .value.toFixed(2);
      The expression should look like this if you want 2 decimal places:
      effect("Slider Control")("Slider").value.toFixed(2);
      If you want to add a symbol such as Dollar Sign before the number, add " $ " + before the expression
      "$" + effect("Slider Control")("Slider").value.toFixed(2);
      To add spaces between currency symbol & number, just add the spaces between the quotes
      " $ " + effect("Slider Control")("Slider").value.toFixed(2);

  • @ileyncasallas
    @ileyncasallas 2 ปีที่แล้ว

    Love it , thank you for teaching it, it is much more easy with out long and confusing expressions thank you very much. Love your videos 😍

    • @MikeMurphyCo
      @MikeMurphyCo  2 ปีที่แล้ว +1

      Love your comments! ✌

  • @faken5813
    @faken5813 ปีที่แล้ว

    Te amo Mike! de 800 videos este si funciono! gsus

    • @MikeMurphyCo
      @MikeMurphyCo  ปีที่แล้ว

      Awesome! Glad it helped! 👍 💚

  • @DanishKhan-dk5iv
    @DanishKhan-dk5iv ปีที่แล้ว

    Super work 👍👌

  • @drancov
    @drancov 9 หลายเดือนก่อน

    Thank you, is there a way to maintain the double digit countdown when it reaches 9 to 0? EX: 09, 08, 07

    • @MikeMurphyCo
      @MikeMurphyCo  9 หลายเดือนก่อน +1

      There are modifications you can make to the expression, but I do not have a simple solution to provide you. If you search how to add leading zeros with countdown timers, you should be able to find some tutorials to follow along. 👍

    • @drancov
      @drancov 9 หลายเดือนก่อน

      @@MikeMurphyCo thank you 4 the tip! I appreciate your work and talent.

  • @capteetutorials9996
    @capteetutorials9996 ปีที่แล้ว

    thanks

  • @lasarshistoriesofeverything
    @lasarshistoriesofeverything ปีที่แล้ว

    This is amazing. Do you know what scripting language AE uses? Is it the C language, because C statements end in semi-colons.

    • @MikeMurphyCo
      @MikeMurphyCo  ปีที่แล้ว

      AE uses an extended form of Javascript. Here is a link to the details about the scripting language used in After Effects:
      adobe.ly/3WZ7chq

  • @jeyg4561
    @jeyg4561 ปีที่แล้ว

    How do I add a zero in front

    • @MikeMurphyCo
      @MikeMurphyCo  ปีที่แล้ว

      Here is a tutorial that should help you:
      th-cam.com/video/X7aTqMcfjB0/w-d-xo.html

    • @jeyg4561
      @jeyg4561 ปีที่แล้ว +1

      @@MikeMurphyCo you're the best. That was quick. Saved my butt