Thanks for the reply and sample project works on PC not Watch what OS are you running ?
I can confirm this is not working on my Galaxy Watch 4 I don’t see AM/PM when switching to 12h time on watch I only see the time. The 24H works fine on watch.
Are you closing watch face? Mine is synced to the phone when I updated my phone it didn’t update until the watch had gone dark and then active to show the watch face again.
Do you have any issue with Galaxy Watch 4 non classic? In my case I just use AMPM tag then replace it with bitmaps and then the 24H format is purely image. Then I use the timeline to show/hide these formats. It’s perfectly working on GW4 Classic however in GW4 non classic they are not showing.
I don’t know what works now with the beta version. I would leave it as TTF for now. Setting up custom strings and customized bitmaps for am/pm indicator disappears when set to other languages. This will be an issue for all watch faces created in WFS. Not sure if it’s from the software update of the watch or the WFS beta.
Hi, I’ve been trying to use the [IS_24] tag with [IS_AFTERNOON] and [AMPM_PO] to find a way to show the image or move the image (tag on placement) -40(placement out of the zone) [IS_AFTNOON]<=0?+336:0 (296 image location + 40 from the placement zone) that work to move the AM/PM image but when I add [IS_24] juts stop showing at all.
If it is a 24 hour system the first condition is true and it returns zero
If it is not 24 hour then the first condition is false it goes to the second condition
If it is Afternoon The condition is true returns 336 and if not it returns zero
There is no need for the comparisons since they return 0 or 1 true or false.
If it is Afternoon The condition is true returns 336 and if not, it returns zero (how do I make it go to 336 instead of 0 since I want to show AM as different image?)
By the way thanks for the code, since I’m new to wear OS and galaxy watch I’m trying to understand how the code works.
However Galaxy Watch Studio documentation has an excellent tutorial on TAGS The TAGS are different and how you add them is a bit different but the explanation of the logic especially for Ternary operators is really done well.
I think that there are three things that really help when doing tags
First Write them in a text editor instead of trying to do it in the WFS dialog box
Write the logic on separate lines because WFS will not do the line separator and will put them all on one line when you paste it in.