Profile

David Levy

Contact Details

My Content

1 to 20 of 40 total
Posted By David Levy 04-17-2025 15:35
Found In Egroup: Facility Control
\ view thread
Wow, thanks everyone! I eventually saw some downsides with the external constraints and reverted. ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ------------------------------
Posted By David Levy 04-16-2025 15:26
Found In Egroup: Facility Control
\ view thread
Hello, I'd like to make separate dropdowns for touchdowns, and penalties, etc... where the user can select from the entire roster. I know I could copy from the rosters and make constraints for all the different dropdowns, but that seems like a lot of copying. I've been successful using Global constraints, ...
Posted By David Levy 04-16-2025 14:35
Found In Egroup: Facility Control
\ view thread
Thanks Richard! Can this also be done with Global Constraints? Are those also scriptable? here's an example from the docs, can I script this type of constraint? 480i-59.94 576i-50 1080i-29.97 1080i-25 720p-59.94 720p-50 1080p-59.94 1080p-50 ------------ ...
Posted By David Levy 04-15-2025 16:23
Found In Egroup: Facility Control
\ view thread
The documentation for Dashboard says: "Parameter References Sub-params within a structure may also be defined as references to other parameters. These behave much like C++ or Java variable references. A parameter reference inherits the referenced parameter's type, attributes and constraints. " ...
Posted By David Levy 02-06-2025 11:04
Found In Egroup: Facility Control
\ view thread
Is there a way to use the tag to organize tags within the group? The docs for the tag seem to hint this would work, but when I try it, any tags within the tag disappear. The docs for the "Meta" tag say: meta This is a convenient parent tag for all non-UI tags. The meta tag does not ...
Posted By David Levy 01-23-2025 12:18
Found In Egroup: Facility Control
\ view thread
How far down can subparams go? I'd love it if I could have a roster struct array within a team struct. Is that possible? ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ------------------------------
Posted By David Levy 11-16-2024 19:42
Found In Egroup: Facility Control
\ view thread
Ok, I figured it out: "w.localselection" was preventing "w.selectionparam" from working. ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ------------------------------
Posted By David Levy 11-16-2024 19:18
Found In Egroup: Facility Control
\ view thread
I also tried using one of the global params, but it doesn't seem to work. The struct table is in the widget, the global param is well, global. I must be doing something wrong ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ...
Posted By David Levy 11-16-2024 18:00
Found In Egroup: Facility Control
\ view thread
I have struct tables in a widget, and I want them to use an internal param for "w.selectionparam" Is this possible? I've tried to use normal and relative parameters. ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States -------------- ...
Posted By David Levy 11-14-2024 14:54
Found In Egroup: Facility Control
\ view thread
Is there any gotchas for datalinq for this? I feel like if I use params.resetAllValues, it would wipe out the array and then what happens in datalinq? ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ------------------------------
Posted By David Levy 11-14-2024 13:18
Found In Egroup: Facility Control
\ view thread
Ok, cool, thanks James! ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ------------------------------
Posted By David Levy 11-14-2024 10:05
Found In Egroup: Facility Control
\ view thread
For further info, If I change these individual structs to a struct array, the problem goes away. Will this be a problem for datalinq? I initially went with individual structs because they would always be present when I need to clear the info. How does datalinq handle dynamic params? ...
Posted By David Levy 11-13-2024 17:24
Found In Egroup: Facility Control
\ view thread
Update: the code is irrelevant, even if I change a view param, this breaks ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ------------------------------
Posted By David Levy 11-13-2024 17:21
Found In Egroup: Facility Control
\ view thread
Updated Template since first post: Logo - 0 Primary - 1 Secondary - 2 Bottomline - 3 1 2 ------------------------------ ...
Posted By David Levy 11-13-2024 17:17
Found In Egroup: Facility Control
\ view thread
Here's the offending code: function clearTeamRotations() ( for (var i = 0; i < 12; i++) ( for (var j = 0; j < 16; j++) ( params.setValue('team' + i + '.info.rotEvt' + j, 0, -1); ) ) ) function updateTeamRotations() ( clearTeamRotations(); // i is the rotation number in ...
Posted By David Levy 11-13-2024 17:15
Found In Egroup: Facility Control
\ view thread
Here's what it turns into: ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ...
Posted By David Levy 11-13-2024 17:14
Found In Egroup: Facility Control
\ view thread
Here's a sample struct pre-bug: ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ...
Posted By David Levy 11-13-2024 17:12
Found In Egroup: Facility Control
\ view thread
Ok, I did some more research. I can make this consistently when I try to params.setValue in one of those Structs. However, when I first wrote this, I didn't have any code that wrote to those structs at the time, I was just editing view params at that time. ------------------------------ David ...
Posted By David Levy 11-13-2024 12:28
Found In Egroup: Facility Control
\ view thread
Thanks James, Are there any updated docs for Dashboard that list methods like that? ------------------------------ David Levy Lead Real Time Graphics Developer ESPN Charlotte United States ------------------------------
Posted By David Levy 11-13-2024 10:00
Found In Egroup: Facility Control
\ view thread
I tried params.getAllValues(), but it returns a Java object and I had to resort to using Java to actually get the data from the array. However, you've warned me that Java code isn't really supported, so I guess I will stick to getValue. Is there a plan to make getAllValues return something I can manipulate ...