Ok, the weird thing is that the second hand was pointing up at the 12 position. I tried many times but something just didn't work. So I did some searching and found an analog clock script and used that instead and it worked.
Put this script into clock_face object and apply.
Sub Object_onscriptenter
object.SetTimer 1, 1000
End Sub
Sub object_ontimer1
t = FormatDateTime(time(),3)'---Get your system time
h= hour(t)'---Get current hour
desktopx.object("hour_hand").Rotation= h * 30 '---Multiply current hour to get correct rotation
m= minute(t)'---Get current minute
desktopx.object("minute_hand").Rotation= m * 6 '---Multiply current minute to get correct rotation
s= second(t)'---Get current second
desktopx.object("second_hand").Rotation= s * 6 '---Multiply current second to get correct rotation
End Sub
I did try after to make my own set of hands, and they were not too bad but i haven't made them quite perfect. I will try to perfect that. I would like to understand more about grouping when i make a clock because there are 3 options and I usually choose the combine to make objects behave as a single object. So far it works but maybe i should choose the others. I have not found info on this yet. And i would like to make a slider widget, something that opens and will show digital clock. I will search for that and some nice clock hands.
thanks, if there is anything you can do, please let me know.