Vector black and white icons
https://fonts.google.com/icons?icon.platform=web
https://pictogrammers.com/library/mdi/
Search found 375 matches
- 17 Oct 2024, 16:02
- Jump to forum
- Jump to topic
Re: What is your coding environment and workflow?
In my editor you can make a template for such watch faces. And then you can add necessary functions yourself using this documentation and basic knowledge of JS.
- 16 Jan 2025, 15:55
- Jump to forum
- Jump to topic
Re: Help with simulating watchface for the balance
The sequence of actions is correct. You have an error somewhere in your code.
- 17 Jan 2025, 07:27
- Jump to forum
- Jump to topic
Re: Help with simulating watchface using Zepp OS [ balance]
Of course it's going to cause an error. Because if you look at the structure of the files before changing them, you will see that it is different. In the best case you can copy the init_view() function from one file to another. But you also need to m,eltn copy other elements besides the function.
- 17 Jan 2025, 19:18
- Jump to forum
- Jump to topic
Re: Help with simulating watchface using Zepp OS [ balance]
piotarock
1. The editor makes watch faces on API 1. In Zeus CLI you have created code on API 2. They have fundamentally different code and cannot be copied. Create a watch face on API 1. If it is important for your design to use functions that are available only on API 2, you can take only ...
1. The editor makes watch faces on API 1. In Zeus CLI you have created code on API 2. They have fundamentally different code and cannot be copied. Create a watch face on API 1. If it is important for your design to use functions that are available only on API 2, you can take only ...
- 06 Feb 2025, 19:43
- Jump to forum
- Jump to topic
Re: SashaCX75 V.12.2: mile per km
It seems to be a specific feature of this model. You can try to use ‘Numeric values’ image set instead of font. It might help.
- 19 Feb 2025, 17:46
- Jump to forum
- Jump to topic
Re: Add Floor and Calendar event element
Because there's no such thing in the editor. You have to edit the code of the finished watch face.
You cannot display calendar events on the watch face. You can only add a shortcut to the calendar.
You cannot display calendar events on the watch face. You can only add a shortcut to the calendar.
- 02 Mar 2025, 09:16
- Jump to forum
- Jump to topic
Re: How to package in .zab?
I think they make a blank watch face in the official editor and export it to .zab. Then in it they change the existing .zpk file to the .zpk file created in my editor.
When using Zeus CLI, it also creates an empty watch face and then pastes the code from the watch face created in the editor into it ...
When using Zeus CLI, it also creates an empty watch face and then pastes the code from the watch face created in the editor into it ...
- 20 Jun 2025, 16:37
- Jump to forum
- Jump to topic
Re: Watchface Maker: Help With 3 Issues
It seems that if you select a custom preview instead of a generated preview when exporting, it works faster. But I'm not sure.
- 23 Feb 2026, 19:12
- Jump to forum
- Jump to topic
Re: Seonds progress (linear mode) and also step
This is an example I've created; it's the simplest method I can think of.
But you need to create a 60-frame image to show this progress.
This is the simplest option and the easiest to adapt to different models.
But you can also make one image with the background as a mask. And under it, place ...
- 23 Sep 2023, 11:35
- Jump to forum
- Jump to topic
Re: Amazfit Balance Faces
When using dials from the GTR 3 Pro, the animation and smooth second hand will most likely not work. The rest of the functions should be identical.
- 24 Sep 2023, 14:31
- Jump to forum
- Jump to topic
Re: Amazfit Balance Faces
@Sharpshot90
Here are the test dials to check if the colours are correct. One is created in my editor, the other in the official editor. See how they are displayed on AOD.
Here are the test dials to check if the colours are correct. One is created in my editor, the other in the official editor. See how they are displayed on AOD.
- 03 Oct 2023, 13:19
- Jump to forum
- Jump to topic
Re: Amazfit Balance Faces
BigBlind68 If there is animation in the watch face, you can try to set the GTR 4 model in the editor before building.
Or you can edit the configurations file in the model_config folder. At the end of the file change the "versionOS" value from 1 to 3.
There is no easier way to make an animation for ...
Or you can edit the configurations file in the model_config folder. At the end of the file change the "versionOS" value from 1 to 3.
There is no easier way to make an animation for ...
- 12 Jun 2025, 10:40
- Jump to forum
- Jump to topic
Re: Create a watchface with multiple tabs where it shows different data on each page
This is easily possible and simple to implement. But it won't work with the EDITOR alone, a little knowledge of javascript is necessary.
- 18 Jul 2024, 05:51
- Jump to forum
- Jump to topic
Re: Gradient problem with png images
Send me the original image files (before converting them to dials). I will see if there is anything I can do about it.
- 19 Jul 2024, 08:36
- Jump to forum
- Jump to topic
Re: Gradient problem with png images
https://i.postimg.cc/DZ1j9xcT/1721376580804.png
https://i.postimg.cc/KcrpQsz7/IMG-20240719-112533.jpg
Here is a photo of the watch and a screenshot taken on the watch (not in the editor). The photo shows more artefacts than the screenshot. This indicates that the screen cannot display smooth ...
https://i.postimg.cc/KcrpQsz7/IMG-20240719-112533.jpg
Here is a photo of the watch and a screenshot taken on the watch (not in the editor). The photo shows more artefacts than the screenshot. This indicates that the screen cannot display smooth ...
- 29 Nov 2024, 11:29
- Jump to forum
- Jump to topic
Re: Displaying two-digit numbers as a unique image - is that possible?
This is possible only if you write the watch face code yourself, and not make it from ready-made elements in the editor. You can't do it in the editor.
- 04 Feb 2025, 08:00
- Jump to forum
- Jump to topic
Re: About Active2 's watchface
@asoo, we have added a Active 2 section on the website. You can now upload your watch faces to the catalog for testing and sharing with others.
- 14 Feb 2025, 07:47
- Jump to forum
- Jump to topic
Re: Help with color change on tap script
Try this
pointer is not an img in the code, it must be treated differently
let colornumber_main = 1
let totalcolors_main = 5
let namecolor_main = ''
let pointerstring = 'pointer_1.png'
function click_ColorStyle() {
if(colornumber_main>=totalcolors_main) {
colornumber_main=1;
}
else ...
pointer is not an img in the code, it must be treated differently
let colornumber_main = 1
let totalcolors_main = 5
let namecolor_main = ''
let pointerstring = 'pointer_1.png'
function click_ColorStyle() {
if(colornumber_main>=totalcolors_main) {
colornumber_main=1;
}
else ...
- 15 Feb 2025, 18:02
- Jump to forum
- Jump to topic
Re: Help with color change on tap script
Try this
pointer is not an img in the code, it must be treated differently
Changing properties with hmUI.prop.MORE is correct in this case. But I don't understand why to add an additional variable ‘pointerstring’? I would change the function like this
let colornumber_main = 1
let totalcolors ...
- 13 Mar 2025, 12:33
- Jump to forum
- Jump to topic
Re: Unknown weather issue
I think it's more correct to write to Amazfit support to have them fix this issue.
This may be a temporary solution for now. But you have to decide what is better for you: sometimes showing unknown weather instead of rain or sometimes showing rain instead of unknown weather. Personally, I've only ...
This may be a temporary solution for now. But you have to decide what is better for you: sometimes showing unknown weather instead of rain or sometimes showing rain instead of unknown weather. Personally, I've only ...
- 15 Mar 2025, 19:40
- Jump to forum
- Jump to topic
Re: Change minute and hour color
If there are no seconds on the watch face, the image may change with a delay. For example, when the minutes and minutes change when the screen is switched on and off.
To set coordinates you use a variable related to the screen size. If you have not defined this variable earlier in the code, it may ...
To set coordinates you use a variable related to the screen size. If you have not defined this variable earlier in the code, it may ...
- 20 May 2025, 18:09
- Jump to forum
- Jump to topic
Re: I will stop accepting requests and help to port watchface in all cases
Thank you so much for everything you’ve contributed to the community. Your efforts to bring high-quality watch faces to ZeppOS users have not gone unnoticed, and we deeply appreciate the time, skill, and care you’ve put into your work.
But it wasn’t just about porting — you also helped countless ...
But it wasn’t just about porting — you also helped countless ...
- 09 Aug 2025, 07:49
- Jump to forum
- Jump to topic
Re: [Active 2r] Request to modify - Casio modern
Hi sir thats why I put credit thru this post, I tried to message the original creator however he's not accepting DMs
If you’ve only just sent the message, it’s best to wait a bit — for example, the user tuman18 was last active on the site on 04.08.2025, so it may take some time before they see ...
- 25 Sep 2025, 18:48
- Jump to forum
- Jump to topic
