In my watchface, I'm trying to display date in format MMDD instead of DDMM.
To do that, I'm using this code:
Codice: Seleziona tutto
"Date": {
"MonthAndDay": {
"Separate": {
"Day": {
"TopLeftX": 233,
"TopLeftY": 79,
"BottomRightX": 254,
"BottomRightY": 94,
"Alignment": "TopLeft",
"Spacing": 1,
"ImageIndex": 13,
"ImagesCount": 10
},
"Month": {
"TopLeftX": 264,
"TopLeftY": 79,
"BottomRightX": 285,
"BottomRightY": 94,
"Alignment": "TopLeft",
"Spacing": 1,
"ImageIndex": 13,
"ImagesCount": 10
}
},
"TwoDigitsMonth": true,
"TwoDigitsDay": true
},
instead of this code
Codice: Seleziona tutto
"Date": {
"MonthAndDay": {
"OneLine": {
"Number": {
"TopLeftX": 233,
"TopLeftY": 79,
"BottomRightX": 285,
"BottomRightY": 94,
"Alignment": "BottomLeft",
"Spacing": 1,
"ImageIndex": 13,
"ImagesCount": 10
},
"DelimiterImageIndex": 32
},
"TwoDigitsMonth": true,
"TwoDigitsDay": true
},
But when I use the code that displays the month and day separated, the month and day are displayed at the same position and the digits are overlapped (see image).
Isn't possible to use the "Separate" modifier?
(Is there a way to obtain a list of the available modifiers?)