I have Hours and Minutes working but the Seconds no.
barHr = getHour()+"";
if (barHr != null && barHr < 10) barHr = "0"+barHr;
barMin = getMinute()+"";
if (barMin != null && barMin < 10) barMin = "0"+barMin;
barSec = getSecond()+"";
if (barSec != null && barSec < 10) barSec = "0"+barSec;
barTime = barHr + ":" + barMin + ":" + barSec;
borrowed code but help shows second() getSecond not Seconds
trying both still no go
barHr = getHour()+"";
if (barHr != null && barHr < 10) barHr = "0"+barHr;
barMin = getMinute()+"";
if (barMin != null && barMin < 10) barMin = "0"+barMin;
barSec = getSecond()+"";
if (barSec != null && barSec < 10) barSec = "0"+barSec;
barTime = barHr + ":" + barMin + ":" + barSec;
borrowed code but help shows second() getSecond not Seconds
trying both still no go
Comment