I've been trying this out more and the example they give is good as a timer going up, but i'm struggling trying to figure out how to get a seoncds and decimal to appear as it should..
this is the closest I've gotten so far
zeropad(floor(Timer% 60), 1) & "." & zeropad(floor(Timer%60), 1)
however this results in showing the timer value like this.. 5.5 4.4 3.3 I can't figure out how to shift the area to the right of the period to display the value in the .0 area..
i'm trying to make it count down 4.0 3.9 3.8 3.7 etc.. I'm sure its just a few simple changes but as i dug deeper into this tuturial it was clear they were not going to discuss how to get in to milliseconds..
it seems like it might have something to do with changing the % value, but i've tried a bunch of variations and nothing seems to allow me to grab the milliseconds of the timer (or even the time value from the tutorial)
Thank you again for your help with this!