The Language Reference states:
Although the Timer appears in the list of Built-in controls in the Window Layout Editor, this is done only as a convenience to programmers. In terms of the object hierarchy, the Timer is not a control. It is subclassed from Object. This means you can create Timers in your code via the New operator, just as with other objects.
If a Timer is dynamically instantiated with “New”, then how does one set the Action event? Is there a way to assign a method to an event name?