I was messing around with the codes, and can´t understand why this code doesn`t work.
I wanted to just make a demo, of a watch changing faces every x seconds.
For example between seconds 10 and 20 i will show image x1, between 20 and 40 image x2.
Between 40 and 60 another image, from 0 to 10 nothing.
Example:
$((#Ds#)<10)&&((#Ds#>20))?100:0$
Shouldn`t that equal :
If (Actual second) < 10 and (actual second) >20
then
Opacity 100
Else
Opacity 0
Endif
Also is there a code I can add so they fade in and out ?
Hi @joedoughty
The problem is the logic in the code will never be true.
The Seconds value (#DS#) can never be less than 10 AND more than 20 at the same time.
You probably want the opposite, which is more than 10 AND less than 20 (values 11-19) $(#Ds#)>(10)&&(#Ds#)<(20)?100:0$