I need help with images of times of the day, please

Hello guys, i need a little bit of help, i want to show each image in a specific time of the day, an image between 6am to 11 am, 11am to 3pm, 3 to 6pm, 6 to 8pm, 8pm to 6am (I guess I need to do 8pm to 12 and 12am to 6 am… here is the watch face I’m making and is to be with the background for this watch, please help

Here is the watch, nerio alberto - It's a (Disney) World - watch face for Apple Watch, Samsung Gear S3, Huawei Watch, and more - Facer

I would suggest this:

5 images as separate layers (plus duplicate te lowest one and put it on top).
Make sure they in order of appearing (lowest - first).

Then to each layer (except lowest one) add this in transparency:
$#Dk#>x?100:0$

And instead of x place time( in 24 hour) when you want it to show up.

Thank you so much! Gosh I owe you big time :smile:

1 Like

Let me know what do you think, please… nerio alberto - It's a (Disney) World - watch face for Apple Watch, Samsung Gear S3, Huawei Watch, and more - Facer

Looks good.
Works good.

I thing you might want to consider when updating it in the future:
Instead of using the transparency of 100 and 0 (in a binary style way) try to transcend into the next one, like using seconds as a way to go smoothly into full view.

I wanted that, but don’t know how

Ok, it should look like this:

Let’s say we want it to be constantly fading from one hour until another one.
From what I remember you wanted those intervals to be 4 hours each.

(#DH#+(#Dm#/60)) - gives you a current hour with its parts (0-23,99999999999(9))

Now you need to get intervals of 4 hours:
((#DH#+(#Dm#/60))-((floor((#DH#+(#Dm#/60))/4))*4))
That gives you (0-3,9999999(9))

((((#DH#+(#Dm#/60))-((floor((#DH#+(#Dm#/60))/4))*4))/4)*100)
Put that intead of 100 in previes condition and play with layers order.

(But now you need to put into x place in time( in 24 hours) when you want it to show up, BUT with its parts)