Not that I know of. Off the top of my head, you'd have to make your images first. 12 for each hour, 59 for each minute, 59 for each second (130 images!)
Then you'd have to create your three clock hand objects and add states for each image (130 states in total), naming the states after the time they represent (12, 1, 2, 3...etc.) So the second hand object would have states 0 through 59, the hour 1 through 12, etc. SEE THIS TUTORIAL TO GET THE IDEA
Last, you'd need a script to get the time and set the appropriate state.
A quick example:
'Called when the script is executed
Sub Object_OnScriptEnter
Object.SetTimer 1, 1000
End Sub
'Called when the script is terminated
Sub Object_OnTimer1
t = second(now)
object.state = t
End Sub
The minute and hour functions should work the same way.
WC WIKI - DX USER GUIDE - MORE TUTORIALS