How to display playback time in dynamic textfield with variable?
I made it to that point where seconds:seconds are displayed.
If I divide first value with 60 I guess I should have seconds?
Seconds should only count from 0 to 60…
function checkPlayback():Void{
vProgress = Math.round((csldProgress.value)/1000) + “:” + Math.round((csldProgress.value)/1000);
}