Comment on The Colour ClockparentComments−naz15yGreat minds and all. If you replace the html file in the screensaver bundle you can use yours (or mine) instead of the flash one.−ars15yInstead of: window.setInterval(frame, 1000); Do: window.setTimeout('window.setInterval(frame, 1000)', 999-(new Date()).getMilliseconds()); That way the seconds will be properly synchronized.−vog15yInstead of a string containing code, you should use an anonymous function.
Comments
Great minds and all. If you replace the html file in the screensaver bundle you can use yours (or mine) instead of the flash one.
Instead of:
Do: That way the seconds will be properly synchronized.Instead of a string containing code, you should use an anonymous function.