I am trying to include a Clock Timer (a two minute warning countdown for several topics in a row) in a template published to my project server. In my Xpression Studio Sequence, I have had good success with setting the timer to start with CTRL1 and reset when offline, but if I publish the template and play it from my Remote Sequencer on the Studio box and set the timer to start when online and reset when offline, the timer never fires. I've included this script in OnBeforeOnline:
dim widget as xpClockTimerWidget
engine.GetWidgetByName("ClockTimer1",widget)
widget.action=widget.action.reset
...and this script in OnOnline:
dim widget as xpClockTimerWidget
engine.GetWidgetByName("ClockTimer1",widget)
widget.action=widget.action.start
Is this even possible through the Remote Sequencer?