I have a chronograph hands in my design but they are rotating much too slowly. I’ve tried to speed them up with a factor (multiplication) but without success. Here is the rotation value I tried for the seconds hand:
(floor(#SWES#*6.0))
I factored by 6 since each second should rotate the hand by 6 degrees.
What am I doing wrong here? Same issue for chronograph minutes and also hour.
Hello Mark, the “.0” is unnecessary but you were correct in a sense that you need to multiply by 6. Using the floor method will create a ticking hand instead of a smooth hand but you’re missing one component. For the ticking hand use
(floor(#SWES#%60)*6)
For a smooth hand use just
(#SWES#*6)