Add to Source Text (Alt +Click)

t = Math.floor(outPoint-time); minut = Math.floor(t / 60); second = t % 60; if(minut < 10) { if(second < 10) { [‘0’ + minut + ‘:’ + ‘0’ + second]; } else { [‘0’ + minut + ‘:’ + second]; } } else { if(second < 10) { [minut + ‘:’ + ‘0’ + second]; } else { [minut + ‘:’ + second]; } }

Copy source above to Google

To make the time go in front, you just need to remove – “outPoint-“