Hi all. I have been out of the game for a couple of years and recently decided to create something new. My newest project is a bit esoteric in nature. I want to set a tag that gives me a range of minutes, for example, from 10 to 14 minutes in the hour. All other minutes would show this as not visible. I tried this tag, $#Dm#==10-14?100:0$ but it was a no go. Any ideas? Thanks in advance for any help on this.
3 Likes
Welcome back! You can do that a few different ways, but in each way you have to test #Dm# twice by using &&
:
$#Dm#>9&&#Dm#<15?100:0$
Greater than 9 and less than 15
$#Dm#>=10&&#Dm#<=14?100:0$
Greater than or equal to 10 and less than or equal to 14
3 Likes
$#Dm#>9&&#Dm#<15?100:0$
The way you have it now is “set opacity to 100 when the minute equals negative 4”.
3 Likes
Thank you so much! This is perfect. I knew I was missing something, just been out of the game too long.
2 Likes
Thanks. I knew I had the wrong syntax, but it was my best guess at the moment.
1 Like