Hello, I am in the process of building a quiz app, I have got the timer set to the time I want it to be & then navigate to the end screen once it is finished. what I want it to do is show the countdown in a label, I’ve managed to get it so it shows the first second eg 89 but I want it to countdown to 0 showing each number so the user knows how much time is remaining. Is this possible? sorry if it’s been asked before & thanks in advance.
Try this for help
1 Like
Thank you, that looks exactly what i’m looking for. I think I was making things way too complicated for myself. First time i’ve ever used a platform like this.
1 Like
Isn’t that going to add an extra second? I think that should work but without the initial “wait 1 seconds” block.
For example, if Label7’s Text was 2, your blocks would do:
wait 1 second
Label7’s Text ≥ 0
wait 1 second
display 1
Label7’s Text ≥ 0
wait 1 second
display 0
Also not sure if you need to convert the label text to a number before checking to see if it’s less than zero.
I only put one extra second because i thought it would take one second for the app to load. I may be wrong though.
It should actually be saying repeat until the text is less than 1. My bad.