Following this thread, I understand how it works the WebTimer: https://forum.xojo.com/35903-two-way-syncronous-communication-xojo-webcontrols-dom-javascrip/last
I needed to understand what site specifically the trigger to the browser was launched.
However, I note that in the webcontrolwrapper controls internally is not necessary to run the timer. It is right? Thanks.
I note that the call to WebTimer class is done internally from the ExecuteEvent event of a WebControlWrapper Control
I suggest not trying to use a WebTimer from within a WebControlWrapper. There are too many inefficiencies related to doing it that way. Just use the javascript command SetInterval and have it call TriggerServerEvent within your control instead.
Greg, Thanks for the clarification. In this case I was referring to concepts that help me understand the inner workings.