Caravan8798
It is impossible to start and stop animation by button in the editor. You can add a button, but you will have to write the code to start the animation yourself.
Smooth appearance of the image can be done in several ways.
1 - frame-by-frame animation
2 - overlapping the image with a ...
Search found 359 matches
- 07 Apr 2024, 13:34
- Jump to forum
- Jump to topic
- 13 Apr 2024, 11:19
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
wanders This forum topic is dedicated to the work of the editor. It is better to discuss creation of programmes for Zepp OS in a separate topic.
First of all, I advise you to read the official documentation. You are trying to combine settings and sensors edents into one block. This is wrong ...
First of all, I advise you to read the official documentation. You are trying to combine settings and sensors edents into one block. This is wrong ...
- 18 Apr 2024, 10:34
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Lattenknaller
You can create a dial with a smooth second hand and see how the rotation animation is triggered there. There, the trigger used as a start trigger is the switching on of the screen. If you use a button the animation start commands will be the same.
You can create a dial with a smooth second hand and see how the rotation animation is triggered there. There, the trigger used as a start trigger is the switching on of the screen. If you use a button the animation start commands will be the same.
- 28 May 2024, 21:37
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
It is difficult to say something without seeing the original files. I can advise you to switch on the option to convert images without quality loss in the editor settings and make sure to force the ARGB format.
You can also try to change the colour of one pixel from #000000 to #000001. Then the ...
You can also try to change the colour of one pixel from #000000 to #000001. Then the ...
- 03 Jun 2024, 16:47
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Omaradsl
1. What coordinates are copied when double-clicking on the preview are pasted into the coordinates field. If it is not so, then show a video or a project where it does not work correctly. The fact that the image itself is shifted from these coordinates is because the image itself probably ...
1. What coordinates are copied when double-clicking on the preview are pasted into the coordinates field. If it is not so, then show a video or a project where it does not work correctly. The fact that the image itself is shifted from these coordinates is because the image itself probably ...
- 13 Jun 2024, 16:25
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Version 11.0
Mirror
Completely redesigned the weather widget.
Added weather widget for several days (forecast).
Added support for Bip 5 Unity.
Mirror
Completely redesigned the weather widget.
Added weather widget for several days (forecast).
Added support for Bip 5 Unity.
- 03 Jul 2024, 18:32
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Lattenknaller
I think the problem is in the if (cc ==0 ) block on line 1607. You are trying to change the visibility of elements that are not on the ADS. In any case, if you remove this block, AOD works. Try to add screen type check to this block.
I also don't understand why you write let cc = 0 ...
I think the problem is in the if (cc ==0 ) block on line 1607. You are trying to change the visibility of elements that are not on the ADS. In any case, if you remove this block, AOD works. Try to add screen type check to this block.
I also don't understand why you write let cc = 0 ...
- 09 Jul 2024, 11:26
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
I would change the state of the variable like this
let compas_visible = true;
function click_COMPASS() {
compas_visible = !compas_visible;
if(compas_visible) UpdateCompassOne();
else UpdateCompassTwo();
if(compas_visible) hmUI.showToast({text: 'COMPASS ON'});
if(!compas_visible) hmUI ...
let compas_visible = true;
function click_COMPASS() {
compas_visible = !compas_visible;
if(compas_visible) UpdateCompassOne();
else UpdateCompassTwo();
if(compas_visible) hmUI.showToast({text: 'COMPASS ON'});
if(!compas_visible) hmUI ...
- 19 Jul 2024, 17:00
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Version 11.1
Mirror
Updated the digital time widget.
Updated shortcuts widget.
Added new application launch commands for buttons.
Mirror
Updated the digital time widget.
Updated shortcuts widget.
Added new application launch commands for buttons.
- 07 Sep 2024, 09:09
- Jump to forum
- Jump to topic
- 25 Sep 2024, 20:51
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Omaradsl Interface icons are standard size and I don't plan to change them.
The source code of the editor is available and you can modify the interface to suit your own needs.
https://github.com/SashaCX75/AmazFit-Wa ... /tree/test
The source code of the editor is available and you can modify the interface to suit your own needs.
https://github.com/SashaCX75/AmazFit-Wa ... /tree/test
- 28 Oct 2024, 17:38
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Version 12.1
Mirror
Added transparency for some widgets. Does not work on all models.
Added support for Amazfit T-Rex 3.
Mirror
Added transparency for some widgets. Does not work on all models.
Added support for Amazfit T-Rex 3.
- 31 Oct 2024, 21:17
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Omaradsl
Both links are working
Both links are working
- 28 Nov 2024, 12:59
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
taw_bip
You can see the watch face code only after it is packed.
In the editor you can insert ready functions into the watch face code. There is a corresponding widget for this in the System section. But you will not see the results of this code in the editor. The correctness of the code is not ...
You can see the watch face code only after it is packed.
In the editor you can insert ready functions into the watch face code. There is a corresponding widget for this in the System section. But you will not see the results of this code in the editor. The correctness of the code is not ...
- 30 Nov 2024, 08:14
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Guydu91
Most likely the link will vary depending on the model. For example, for Balance the link to the main page looks like this
I haven't tested this, but it should open the Flow home page.
Most likely the link will vary depending on the model. For example, for Balance the link to the main page looks like this
Code: Select all
hmApp.startApp({ appid: 1038314, url: 'page/gtr/home/index.page'});- 30 Nov 2024, 23:24
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Guydu91
Most likely the link will vary depending on the model. For example, for Balance the link to the main page looks like this hmApp.startApp({ appid: 1038314, url: 'page/gtr/home/index.page'});
I haven't tested this, but it should open the Flow home page.
OK Sasha,
Thanks for your ...
- 22 Dec 2024, 01:21
- Jump to forum
- Jump to topic
Re: Mi Create - for Mi Band 7 Pro/8/9, Mi Watches & Redmi Watches
Firuflai Mi band 9 pro has been implemented but not packaged as a release yet. You can run the version with Mi Band 9 Pro implementation on the GMF branch of Mi Create https://github.com/ooflet/Mi-Create/tree/GMF-format-support-(json). If you want to get Mi Band 9 pro support, you can download the ...
- 25 Dec 2024, 19:15
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Version 13.0
Mirror
Added autosave (enabled in settings).
Added ability to switch background image by tap.
Added ability to switch background colour by tap.
Mirror
Added autosave (enabled in settings).
Added ability to switch background image by tap.
Added ability to switch background colour by tap.
- 07 Jan 2025, 15:50
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@rush2112
There are two different parameters ‘ Numerical values’ and ‘ Value at angle’ for a reason. They display data in different ways. So it is wrong to compare them. There is no easy way to display angled pressure on the GTR3.
There are two different parameters ‘ Numerical values’ and ‘ Value at angle’ for a reason. They display data in different ways. So it is wrong to compare them. There is no easy way to display angled pressure on the GTR3.
- 01 Feb 2025, 08:56
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@SushiSeb It's hard to tell without seeing the watch face. Most likely one or more images are encoded in a format not supported in the editor.
@taw_bip When using the standard widget, sunrise / sunset data does not respond to time format changes. This can only be corrected by using your own code.
@taw_bip When using the standard widget, sunrise / sunset data does not respond to time format changes. This can only be corrected by using your own code.
- 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.
- 09 Feb 2025, 12:11
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Fladis
The first line of the error message says that you cannot access the temporary folder. This may be caused by your OS or firewall settings.
The easiest way to fix it is to try deleting the folder ‘D:\Watch_Face_Editor_(ZeppOS)old\Temp’. You can also try copying the editor to another folder.
The first line of the error message says that you cannot access the temporary folder. This may be caused by your OS or firewall settings.
The easiest way to fix it is to try deleting the folder ‘D:\Watch_Face_Editor_(ZeppOS)old\Temp’. You can also try copying the editor to another folder.
- 03 Mar 2025, 20:18
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Version 13.1
Mirror
Added ability to make a shortcut to any application in editable items.
Added support for Active 2.
Fixed display of buttons and shortcuts when creating a GIF file.
Mirror
Added ability to make a shortcut to any application in editable items.
Added support for Active 2.
Fixed display of buttons and shortcuts when creating a GIF file.
- 28 Mar 2025, 16:35
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Emiliomc The hmApp.startApp command tries to open the watch face as an application. Therefore, if they are opened, they will work with errors. I tried it with several watch faces.
Well, the command itself should look different. It goes something like this hmApp.startApp({ appid: 1051195, url ...
Well, the command itself should look different. It goes something like this hmApp.startApp({ appid: 1051195, url ...
- 04 Apr 2025, 16:10
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Read what is written at the top of the page on the red background. The discussion should be in English.
The author sent me a watch face to check. He's using an angled data display. And for this, the data is taken from the sensor But the sensor returns the last manual measurement value, not the ...
The author sent me a watch face to check. He's using an angled data display. And for this, the data is taken from the sensor But the sensor returns the last manual measurement value, not the ...