Hi folks, I was wondering what the correct syntax was to change the clock display format while a clock is counting down. For example, when the clock goes under 1:00, we want to display :59.23. I figured out how to set the format but not how to get it to change based on a time value. I've tried various methods but no luck so far...
dim timer as xpClockTimerWidget
engine.GetWidgetByName("Clock", timer)
if timer < 60 then [so what goes here?]
timer.format = ":SS.ZZ"
else
timer.format = "N:SS"
end if