I’m trying to make it so that tapping the display cycles through the time, date, heart rate, and step count. I’m using VAR+1, and right now it goes from the time to the date when tapping the display, and I see how to make it continue through the other stats, but how do I get it to reset back to the time after cycling through everything? Since VAR+1 just keeps adding to the var, I don’t see how to get it back to the beginning other than using a separate VAR Reset button.
It sounds like you would just want to make sure to set your time transparency to
$(#VAR_1#%4)==0?100:0$
4 being the number of elements to switch between and ==0 is the base level that it would cycle back to.
Hopefully that makes sense and helps.