can you help me
how i can code an stoppwatch
this is just an example of how it can be done, not working code.
you remember the system time at which the stopwatch was started.
start_time = system.time()
you set the clock to stopwatch mode
clock.mode = stopwatch
you send the differences between the current time and the clock start time to the code that is responsible for drawing the clock.
clock.stopwatch( system.time()-start_time )
clock.draw()