Profile

Richard Crutwell

Contact Details

My Content

1 to 20 of 50+ total
Posted By Richard Crutwell 02-07-2026 05:34
Found In Egroup: Facility Control
\ view thread
Looking at this params file you've some parameters in status and config menus. The status ones default to read-only whilst config menus are configurable depending on the widget hint. Can you try moving specific problem params outside of any menu and see how they behave? ------------------------------ ...
Posted By Richard Crutwell 02-06-2026 07:55
Found In Egroup: Facility Control
\ view thread
Thanks for the video - I'll pass this on to the product team, as the behavior appears to be inconsistent. If you need an entry to return to its default values and you're already using JSON to build structs in your project, I'd suggest creating a method to explicitly reset the entry. This avoids relying ...
Posted By Richard Crutwell 02-06-2026 05:00
Found In Egroup: Facility Control
\ view thread
The stateless attribute applies at the parameter level, and since a struct is effectively an array of parameters, it isn't inherited by child parameters. Unfortunately, this means the attribute is not automatically passed down. To get the desired behavior in Dashboard, you must explicitly set stateless="true" ...
Posted By Richard Crutwell 02-06-2026 04:46
Found In Egroup: Facility Control
\ view thread
In that case, the best approach would be to build a listener that receives the messages and lets you act on them as needed. That said, this may be over-engineering the problem. As an alternative, you could hide multiple functions behind labels or buttons with a RossTalk GPI Trigger, and use each of ...
Posted By Richard Crutwell 02-06-2026 04:26
Found In Egroup: Facility Control
\ view thread
I think there may be a red herring here. The parameters look fine in 9.16, so I suspect there may be a function manipulating them somewhere along the way. Would you be happy to share the project here, or would you prefer to go through Support? ------------------------------ Richard Crutwell Ross Video ...
Posted By Richard Crutwell 02-05-2026 05:48
Found In Egroup: Facility Control
\ view thread
Can you share a snippet from params XML for the parameters in question? Depending on the Type, Constraint and Widget Hint, the params may behave unexpectedly. They are sometimes attempting to snap to a specific widget type defined. Although it could also be a bug like you say. ------------------------------ ...
Posted By Richard Crutwell 12-24-2025 07:07
Found In Egroup: Facility Control
\ view thread
Here is a simple method in Dashboard to routinely trigger functions using the clock: ogscript.debug("Place the function() here to trigger every 5 seconds"); Access Edit Mode Select Timers and double-click task to enter function() " rowspan="1" style="txt-align:center;" weightx="1.0" ...
Posted By Richard Crutwell 12-24-2025 06:32
Found In Egroup: Facility Control
\ view thread
The webserver for this port creates a script that will send triggers if accessed in a browser, to send the same triggers insert '/ajax/' into the url before the trigger ID. ogscript.setStyle('border', 'style:color_1'); ogscript.setStyle('border', 'style ...
Posted By Richard Crutwell 12-16-2025 06:49
Found In Egroup: Facility Control
\ view thread
No probs, there are other ways perhaps. I've changed the other 'struct' to 'struct_array' - you can nest struct arrays within another struct array, the param at the end still gave issues until changed to a 'string_array' however. zero one two three fed fed ...
Posted By Richard Crutwell 12-16-2025 04:33
Found In Egroup: Facility Control
\ view thread
It looks like the struct is reverting to a cached value, or default value. I noticed that the Struct Array is nested inside a struct, is there a reason for this? If not, I'd recommend separation for these two, it appears to work without the nested structure. zero one two ...
Posted By Richard Crutwell 12-02-2025 07:11
Found In Egroup: Facility Control
\ view thread
It sounds like multiple ports for RossTalk are configured and the restart eventually favors the one used by the panel or preferences. In the panel there is the option to dedicate a RossTalk port, if this is also set to 7788 it'll conflict with the server port for Dashboard preferences giving odd and ...
Posted By Richard Crutwell 12-02-2025 06:41
Found In Egroup: Facility Control
\ view thread
The video and audio mapping happens in the Ultrix or BCS (control system) config, if using an Ultrix that is. There may be more expertise to answer a config question on the Connectivity Community instead. The Soft panels in the Ultrix are capable of breakaway audio sources, just must be configured ...
Posted By Richard Crutwell 12-02-2025 06:36
Found In Egroup: Facility Control
\ view thread
There is a panel link tag that works similar to HTML tags, ' ' Here is an example using multiple panels, save these all in the same folder: Link panel: Subpanel 1: Subpanel 2: ------------------------------ Richard Crutwell Ross Video ...
Posted By Richard Crutwell 11-06-2025 03:38
Found In Egroup: Facility Control
\ view thread
Here's an example watching for triggers on keyboard - uses spacebar but any character/key can be used really var code = event.getKeyCode(); var str = event.getKeyChar(); var keyText = String.fromCharCode(code); ogscript.debug(keyText + ' ' + str); ogscript.rename('labelA', "This keyCode " + ...
Posted By Richard Crutwell 11-05-2025 04:52
Found In Egroup: Facility Control
\ view thread
try using ' ' tags inline to define font families, a little more awkward than native font but you can customise labels. " virtualheight="858" virtualwidth="1615"> " style="txt-align:west;bg-fill:fit;size:20;" top="205" width="1589"/> " style="style:html code;" top="150" width="1595"/> ...
Posted By Richard Crutwell 09-01-2025 04:20
Found In Egroup: Facility Control
\ view thread
Hi Naga, Here is a Dashboard script to save CSV files. I hope this helps. Richard function saveBackup(fileName, file) ( ogscript.saveToFile(fileName, file, true); ) var array = [ "team,alive,finishes,positionPts,totalPts,rank", "T1,4,2,20,22,1", "T2,4,0,14,14,2", "T3,4,0,0,0,TBD", "T4,4,0,0,0,TBD", ...
Posted By Richard Crutwell 04-17-2025 05:28
Found In Egroup: Facility Control
\ view thread
I've not seen these global constraints used before, I think they may be an older implementation and there is a newer method, likely using structs. Do you have the examples dump of Dashboard panels? - it's a zip archive Tech Support can provide that has examples of how we use all the features including ...
Posted By Richard Crutwell 04-16-2025 06:55
Found In Library: Facility Control
Posted By Richard Crutwell 04-16-2025 06:55
Found In Egroup: Facility Control
\ view thread
Hi David, I hope this example can help. It shows a struct table, I've added a "pens" subparam to a struct that references values in the struct_array. If this subparam is added/deleted from it will update the choices on the struct. ------------------------------ Richard Crutwell Ross ...
Posted By Richard Crutwell 04-03-2025 08:01
Found In Egroup: Facility Control
\ view thread
Hi Josef, This appears to be a NK plugin generated by the Switchboard, I'll see what options are available for customising this plugin. Can you see if there is any detail within the table once populated when in edit mode, press-hold Shift and double-click on the table? - it will bring up a ...