Awesome job! We'll definitely get our media guy to look at this.
@ZachBrownMedia3 жыл бұрын
Cool, if he has any questions.. just let me know! 😅
@PaolaHernandez-rs4nn3 жыл бұрын
Omg thank you so much. This is exactly what I need to do for my church and started freaking out about it lol
@ZachBrownMedia3 жыл бұрын
Haha awesome to hear! Glad it helped!
@McDbovi3 жыл бұрын
Thanks for the resource bro! Why isn’t there more channels like this. I love the thumbnail
@ZachBrownMedia3 жыл бұрын
👍🏼👍🏼👍🏼
@ignitestreams222 жыл бұрын
thank you very much
@ZachBrownMedia2 жыл бұрын
Sure thing 👊🏼 glad it helped!
@brandonwaynebrown5203 жыл бұрын
Yo great video! Learned a couple things I’m gonna use
@ZachBrownMedia3 жыл бұрын
Thanks dude! Glad it was helpful 👊🏼👊🏼
@c.hopefilms2 жыл бұрын
Great video, I just haven't gotten the email for the free countdowns
@ZachBrownMedia2 жыл бұрын
Hmm, make sure to check your promotional and spam folders just in case! But if you still don’t see it, send me an email hello@churchmediatraining.com and I’ll send it over to you!
@c.hopefilms2 жыл бұрын
@@ZachBrownMedia Thank you for your help! I got it 👍🏻
@ZachBrownMedia2 жыл бұрын
@@c.hopefilms sweet 🙌🏼🙌🏼🙌🏼
@jamanheslop76073 жыл бұрын
Is there a way to create a 5 minute countdown in the same way, with it starting from "5:00" rather than "05:00" Thanks for the video!
@stonebridgechurchmn3 жыл бұрын
Really appreciate this video! The only problem was that when I tried to place the code it gave me an error and I couldn't get it to work, any suggestions?
@ZachBrownMedia3 жыл бұрын
Thanks! Hmm could be a lot of different things causing that.. my first thought is that you possibly left some of the original code in there on accident? Or potentially adding an extra character in after pasting it. Even if it’s just an extra “;” it’s going to mess the whole thing up haha.
@connorbarnes78613 жыл бұрын
@@ZachBrownMedia I am having this exact same error too. It says error on line 14 "unexpected value 'else'"
@ZachBrownMedia3 жыл бұрын
@@connorbarnes7861 hmm I’ll have to pull it back up and look at it to see if I can find the issue. You could try moving the “else” statement to a new line so it’s not on the same line as the “if” statement. Don’t think that will do anything but you can try it
@burtonfan3133 жыл бұрын
@@ZachBrownMedia that would be fantastic thanks so much for checking for us
@burtonfan3133 жыл бұрын
@@ZachBrownMedia hey bud, your tip worked! Thank you so much, and thanks for the awesome video. Your a God send!
@ZachBrownMedia3 жыл бұрын
HERE'S THE CODE FOR AFTER EFFECTS: slider = effect("Slider Control")("Slider") sec = slider%60; min = Math.floor(slider/60)%60; hour = Math.floor(slider/3600); function addZero(n) { if (n < 10) return "0" + n else return n; } addZero(Math.floor(min)) + ":" + addZero(Math.floor(sec));