@superrbo: Nice program. I’m running your project in v3.2.1 (just became available) and I can see the “Start” button changing when I click it. The “set time” feature seems to work too.
However, I notice that if I don’t release the “click” fast enough that the Start/Stop button changes multiple times.
This is a common problem when detecting if something like a button is “down”. The code might detect that it’s down multiple times before the user releases the button. Look inside the “When flag clicked” ‘forever’ loop and think about how frequently you really need to check the Start/Stop button.
Hint: You’ll probably want to look in some other places in your code at your use of the “forever” loop. Remember that forever is a very long time…
Good luck with your school project!