Changing innerHTML in JavaScript

Hi guys,

I would like to subtract from initial text 3.80 0.01 for each second the time line is running (0s = 3.80, 1s = 3.79 etc). How can I do that?

Thank you very much,

Petr

Hello
You can create a looping timeline of 1 second and at the end of the timeline you call a script that change your value then the script will repeat each 1 second

You can also just use setInterval in JavaScript. Look it up in google or here on the forum.