Ok! Just got it! Add a extra frame!
Just added the red for seconds... And this does add a leading zero when seconds are under ten. Should do the same for minutes & hours. Just apply it to them, obviously changing the variable /:secs by /:hours or /:mins
davdesigndate = new Date();
/:hours = davdesigndate.gethours();
/:mins = davdesigndate.getMinutes();
/:secs = davdesigndate.getSeconds();
if ( /:secs < 10) {
/:secs = "0"+/:secs;
}
/:fulldate = new Date( year, month, date, hour, min, sec, ms );
;-)