Hello! Sorry to jump straight out of the water with a support question to the community but, I can’t for the life of me understand how to do this. Maybe someone here would be willing to give me a hand, or maybe point to a post where I can learn how to do this?
The Idea: is to have a “Nudge” button on my watch face. Once clicked, it will move the hour/minute/seconds hands to specific position so they won’t be covering any important information in the background. Then after 3 seconds or so, they go back to their default jobs (showing the hour, minute, seconds). All of this preferably with smooth animations, as in, clicking the Nudge button won’t just make a hand jump to a different position, but it will rather rotate there and back.
Extra info.:
When pressing the Nudge button, hands should have these rotation values when fully in-place:
Hours: 284
Seconds: 284
Minutes: 75
- Adding this extra info not because I want someone to do it for me, but rather to keep the information somewhere (for myself) and if someone wants to help and test what they are doing, well, might as well use the preferred values, if they wish
It doesn’t sound like it would be hard to do on paper but, I can’t wrap my head around how to do this in the creator, with expressions. All I can manage is to make the hands jump to the desired position with a toggle var, but no idea how to make them smoothly move there, and then 3 seconds later move back. I assume for the 3-second reset I would need to make a timestamp when the button was clicked, and then if 3 seconds have passed from timestamp, reset the toggle… however I’m not even sure where I’d add something like that, least of all with expressions.
Thank you so much in advance to any kind soul willing to lend me a hand and a few minutes of their time o/
EDIT 1: I’ve managed to make a button that puts the hands where I want them for 2.5 seconds, and then they return to give the time normally. What I just can’t do is make the hands move smoothly to the desired position and back, all I can make them do is snap to position 2, then back to their normal position x_x I am now at a 100% dead end.
EDIT 2: This is as far as I’ve gotten:
$(#DNOW#-#VAR_1_T#)<2500?(284):#DWFS#$
The hand (in this case seconds) gets into position (284 rotation) for 2.5 seconds, then back to normal, but it doesn’t do it smoothly, it’s a snap, there’s no rotation I’ve tried using clamp
but to no avail, though I’ll be the first to admit I’m not 100% sure what I’m doing, even when I manage to get something working lol… I hate math, to boot -.-