Creating 12 and 24 hour options

I’ve created 12 and 24-hour digital time elements for my watch-face.

I added text for each and I’ve placed a var toggle over each one of them. I then added this in the opacity fields of each digital time: $#VAR_1#==0?100:0$ for the 12hours and $#VAR_2#==0?100:0$ for 24 hours…

When I do that both appear on the watch-face, what am I doing wrong?

Thanks
Trey

this instead:
$#VAR_1#==0?100:0$ for the 12hours and $#VAR_1#==1?100:0$ for 24

It’s two different states of the same VAR

Thanks