How to make text appear at certain times?

I’m trying to make text appear between the times of 7:50 and 8:10. Is there any way to do so?

My current conditional for it is $#Dh#=7?100:0$ but that only makes it appear if the hour is 7.

Help?

$#Dh#=7?100:0$

Translated::
If (Hour) is (7) Then Opacity (100), if not Opacity (0)

If you want something just between 7:50 and 8:10 you’ll need to do something like this for opacity:

$(#Dh#)==07&&(#Dm#)>=50?100:0$

Translated:
If (Hour) is 7 AND (Minute) is greater/equal to 50 Then Opacity (100) if not Opacity (0).
This covers from 7:50 to 7:59:59

And duplicate the layer and instead put this as it’s opacity:

$(#Dh#)==08&&(#Dm#)<=10?100:0$

Translated;
If (Hour) is 8 AND (Minute) is lesser/equal to 10 Then Opacity (100) if not Opacity (0)
This covers from 8:00 to 8:10

I tested it in the maker and it seems to work, it just requires an additional layer. Hope it helps.
If you have a chance check out some of my watches, I’d appreciate it. Just search: GraffitiBatman

1 Like

After about an hour or so of working on the watchface, everything seemed to work perfectly. Thanks so much for your help!