Hi
Try this:
Add a textbox to your scene that looks at the datalinq clock status - turn its visibility off once you're happy it works.
Then add this script to the OnSetText of that text box
dim widget as xpClockTimerWidget
engine.GetWidgetByName("ClockTimer1", widget) ' select case text
case "1"
widget.start
case "2"
widget.stop
case "3"
widget.reset
case else
widget.stop
end select
Change the 1,2,3 in the select statment to whatever the Daktronics Clock Status should be (I just made up 1,2,3). You say the clock status is empty when it starts, so change the "1" to "", remove the "2" and "3" options and keep the case else. If there is a way to get at the Daktronics clock status so that the widget follows the start, stop, reset that'd be ideal.
Better still, if you can get at the actual Daktronics countdown clock value, just datalinq to that instead and don't use a widget. That'd avoid any differences between a widget clock and the daktronics clock.
Simon
#XPression