Connected Custom Watchfaces / Which Watch Face are Wearing Today?

Posts
86
Likes
39
Sorry. That's a very nice face, but it's a 24 hour one. It's not practical here in the US. I edited the date, but I don't know how to make it a 12 hour face. Otherwise is great.
Edited:
 
Posts
5,733
Likes
15,154
Sorry. That's a very nice face, but it's a 24 hour one. It's not practical here in the US. I edited the date, but I don't know how to make it a 12 hour face.

Just go to the Layer 3, and change the Text {dh23} for {dh}
 
Posts
86
Likes
39
I went to load my Red bull face on a racing weekend and somehow the month on the date line became a line of code instead. I downloaded another link to see if it was an issue with my watch and it came out the same way. What kind of bug is that?
 
Posts
5,733
Likes
15,154
I went to load my Red bull face on a racing weekend and somehow the month on the date line became a line of code instead. I downloaded another link to see if it was an issue with my watch and it came out the same way. What kind of bug is that?
Yes, something changed in WatchMaker, and the previous script doesn鈥檛 work now. Delete all the previous script and put this one:

tweens.zoom=1.8

var_days={'SUN','MON','TUE','WED','THU','FRI','SAT'}
if {ddw0} == 0 then
var_yesterday = 7
var_today = 1
var_tomorrow = 2
elseif {ddw0} == 6 then
var_yesterday = 6
var_today = 7
var_tomorrow = 1
else
var_yesterday = {ddw0}
var_today = {ddw0} + 1
var_tomorrow = {ddw0} +2

end

var_monthesinenglish = {'JAN','FEB','MAR','APR','MAY','JUNE','JULY','AUG','SEPT','OCT','NOV','DEC'}

if {dn} == 0 then
var_lastmonth = 12
var_thismonth = 1
var_nextmonth = 2
elseif {dn} == 12 then
var_lastmonth = 11
var_thismonth = 12
var_nextmonth = 1
else
var_lastmonth = {dn}
var_thismonth = {dn} + 1
var_nextmonth = {dn} +2


end
 
Posts
86
Likes
39
You're grossly overestimating me. I was OK to change dh23 to dh, but I wouldn't know where to start here. I'll just wear my Red Bull baseball hat this weekend.

I entered dnnn in between brackets and it worked.
Edited:
 
Posts
5,733
Likes
15,154
You're grossly overestimating me. I was OK to change dh23 to dh, but I wouldn't know where to start here. I'll just wear my Red Bull baseball hat this weekend.

But I must ask, the watchface you posted on Wednesday works and it has, as far as I tell, the same exact code for the month as the Red Bull one and it works. Why is that?

The watchface I posted on Wednesday already had the updated Script, so it works fine

To update the script in your Red Bull version, just 'Edit Watch', and press this little watch


then scroll down and press 'Script'


Then delete all the previous script, paste the Script from my previous post, and press 'Done'


And that鈥檚 all 馃憤
Edited:
 
Posts
5,733
Likes
15,154
I entered dnnn in between brackets and it worked.
Yes, if your watch is in English, then it will work also that way. My script is designed to always show day and month in English, regardless of watch language
 
Posts
86
Likes
39
Thanks. I had begginers' luck, unlike Verstappen, whom I afraid ran out of luck this season.