Setting a delay on an expression for a countdown
Hello, I am a newbie when it comes to expression. I have a piece of code I got from a YouTube video that looks like this:
st = 300;
t = st - time;
if (t>599.999) {
c = timeToTimecode(t);
c = c.substring(3,8);
} else
if (t>1) {
c = timeToTimecode(t);
c = c.substring(4,8)
} else {
t = 0
c = timeToTimecode(t);
c = c.substring(4,8);
}
But what I want to add is a way to add a delay to the start of the countdown, just like what this guy did with his video. Electric - 5 Minute Countdown
Also yes, I am using the same effect he is, he made a tutorial video on it, but the video does not include on how to delay the start of the coutndown while keeping the electric animation animating. How would I do that?
If you need to, here's his Tutorial Video
Thank you in advaice for your help.
