I am tinkering with goog.Timer and reading its API: http://closure-library.googlecode.com/svn/docs/class_goog_Timer.html
Is there a way to set the current time or tick for the timer? For instance, can I set the current time into the timer to be 5000 milliseconds?
goog.Timeris an abstraction abovewindow.setIntervalthat repeatedly dispatches agoog.Timer.TICKevent at a set interval. The interval may be specified using the first constructor parameter or the methodsetInterval().Here is an example that increments a tick counter once every 5 seconds.