Different image on alternate seconds

Hi does anyone know know if I can make an image appear then disappear on alternate seconds. So for example second 1 show image 1, second 2 show image 2 and hide image 1 etc? Thanks

So you want to alternate between 2 images depending on evenness of seconds?

Yes please. So currently I use the math as follows to flash an image every second. $(floor(#Ds#*0.5))==(ceil(#Ds#*0.5))?100:0$ so as the image disappears I am wondering if a different image could then show?

Give the bottom one 100% transparency and for the top one use this:
((floor(((#Ds#/2)-(floor(#Ds#/2)))*2))*100)

Thats fantastic and exactly what I needed. Thanks!!!

1 Like

Just a thought would it be possible to do the same with a 3rd image. So second 1, image 1, second 2, image 2, second 3, image 3 etc? Thanks

That’s gonna be trickier.
Here are the codes for those 3 images:
$(((#Ds#/3)-(floor(#Ds#/3)))*3)<1?100:0$
$(((#Ds#/3)-(floor(#Ds#/3)))*3)>=1&&(((#Ds#/3)-(floor(#Ds#/3)))*3)<2?100:0$
$(((#Ds#/3)-(floor(#Ds#/3)))*3)>=2?100:0$

Hello @Mellin, hello @benkidds I was just trying the last “1,2,3 animation” and it does not seems to work: Facer - Thousands of FREE watch faces for Apple Watch, Samsung Gear S3, Huawei Watch, and more (draft link - will be deleted later)…

I have also just tested and it doesn’t seem to work for me either, unfortunately, any ideas? thanks

let’s try this :wink:

$((floor(#Ds#/3))-(#Ds#/3))=0?100:0$
$((floor(#Ds#/3))-(#Ds#/3))<-0.3&&((floor(#Ds#/3))-(#Ds#/3))>-0.4?100:0$
$((floor(#Ds#/3))-(#Ds#/3))<-0.6&&((floor(#Ds#/3))-(#Ds#/3))>-0.7?100:0$

…in this way also a picture every “4 second set” would be easy to realize:

$((floor(#Ds#/4))-(#Ds#/4))=0?100:0$
$((floor(#Ds#/4))-(#Ds#/4))=-0.025?100:0$
$((floor(#Ds#/4))-(#Ds#/4))=-0.5?100:0$
$((floor(#Ds#/4))-(#Ds#/4))=-0.75?100:0$

That’s @Tomas that set of 3 works perfect I think the 4 I seem to have an issue with but will keep looking as it may just be me! thanks

In the above example I noticed that the second one from the top has “=-0.025?100:0$” and that image doesn’t function. I noticed all the other versions were "=-0.xx?100:0$ without the extra “0” behind the decimal point. I removed that extra zero and Tomas’s code works perfect. Just wanted to add my .02¢ worth. :grin: