Pagina 1 di 1
GTR3 PRO - add seconds hand on full AOD
Inviato: 12 mag 2022, 19:01
da GR33ZY
Hi,
I'm currently using a stock watchface.
I modified it to have a full AOD.
The modification I made does not display the seconds hand.
I downloaded some custom watchfaces and saw the seconds hand is displayed on full AOD.
Can you please tell me how to add this feature to my watchface?
PS: I only have a mac so I can't use the available tool.
Thanks in advance
Re: GTR3 PRO - add seconds hand on full AOD
Inviato: 13 mag 2022, 01:51
da asoo
Can you upload your modified ? , Or at least should upload the index.js file.
Those who are interested in helping you will have the information to find that issue.
--------------------------------------------------------------------------------------------------------------
" if you use normal script please try add this script in you index.js "
Codice: Seleziona tutto
let idle_analog_clock_time_pointer_second = ''
idle_analog_clock_time_pointer_second = hmUI.createWidget(hmUI.widget.TIME_POINTER, {
second_path: 'seconds_hand.png',
second_centerX: 240,
second_centerY: 240,
second_posX: 227,
second_posY: 227,
second_cover_path: 'Seconds_Foreground.png',
second_cover_x: 0,
second_cover_y: 0,
show_level: hmUI.show_level.ONAL_AOD,
});
You must to change X,Y and the name of image to match in your work.
Re: GTR3 PRO - add seconds hand on full AOD
Inviato: 13 mag 2022, 07:14
da GR33ZY
Hi Asoo,
Thanks for your answer.
I tried to adapt your script to the watchface without success.
I attached the full AOD watchface.
Re: GTR3 PRO - add seconds hand on full AOD
Inviato: 13 mag 2022, 14:28
da asoo
GR33ZY ha scritto: 13 mag 2022, 07:14
Hi Asoo,
Thanks for your answer.
I tried to adapt your script to the watchface without success.
I attached the full AOD watchface.
Please try this , Change it to "ALL" mode
Re: GTR3 PRO - add seconds hand on full AOD
Inviato: 15 mag 2022, 07:10
da GR33ZY
Thanks Asoo.
It's exactly what I was looking for.
I looked at the script you modified.
I didn't know about the "show_level: hmUI.show_level.ALL" command.
Thanks again