Profile

Archive User

Contact Details

My Content

1 to 20 of 50+ total
Posted By Archive User 08-28-2019 13:27
Found In Egroup: Facility Control
\ view thread
Hi Aleksander, Each audio fader has an oid that you can hook onto and modify, So, if you drag the audio fader onto another panel and use the parameter inspector(ctrl + i) you can get the specific parameter that you want. The parameter inspector is similar to panelbuilder mode in its interface ...
Posted By Archive User 08-27-2019 21:11
Found In Egroup: Facility Control
\ view thread
Hi Nick, It should work just fine with the blank preset(My mini guide was created with one). It might be the case that you are using different gpi trigger listeners(http and vdcp) at the same time and we have a bug related to that were using both breaks gpi listeners so that could be the cause of ...
Posted By Archive User 08-23-2019 15:40
Found In Egroup: Facility Control
\ view thread
Hi Nick, You seem to be close and I am not exactly sure what you are missing. So, what i can do is tell you how I did it and maybe you can pattern-match off of what i did. So, in dashboard I created a button, gave it the name hello and a trigger id of hello as well and then i added ...
Posted By Archive User 07-10-2019 17:06
Found In Egroup: Graphics
\ view thread
Now that I'm digging more into it, I'm having a hard time figuring out the logic. If the input decibel reading is higher than the max reading, I would like to update the max reading. If that number drops below the max reading, the max reading value should remain unchanged. Hope that makes sense. ...
Posted By Archive User 07-09-2019 21:01
Found In Egroup: Graphics
\ view thread
I am looking at implementing a noise meter with an input coming from an XML file. This number should update automatically. Then I would like to show the highest value reached. I've tried using the String Replace function in VL but that returns a Boolean value. Is there something simple I'm miss ...
Posted By Archive User 07-08-2019 21:44
Found In Egroup: Graphics
\ view thread
Still looking for an answer to this one. It looks like there is a FormatFloat function block that converts a value to a string, but I need to convert a string (always a number) to an integer. Thanks Cam #XPression
Posted By Archive User 04-09-2019 18:21
Found In Egroup: Graphics
\ view thread
I have the same question. i am looking at taking an xml feed with a string value and performing math operations to it, so would need to convert it to a decimal. Is there any way to do that? Cam #XPression
Posted By Archive User 03-23-2019 20:30
Found In Egroup: Graphics
\ view thread
I've noticed that I haven't been hearing any audio in Designer since 8.5 was released. Maybe a call to tech support is in order. #XPression
Posted By Archive User 03-14-2019 19:46
Found In Egroup: Production Workflow
\ view thread
thanks JB.. I just wish it was easier to locate. I've been clicking through all the templates & shots & QRs & I can't find the darn thing. thankfully it was (I believe) a test CC made a while back but it somehow got added into somewhere. #OverDrive
Posted By Archive User 03-12-2019 22:46
Found In Egroup: Production Workflow
\ view thread
Hi all, I tried searching for a solution before making this post but I am wondering if there is an easy way to identify where this custom control in the photo I've attached is located in a template (bottom of photo Bank 48, Button 48). Is there an easy way to find it? Perhaps without double clicking ...
Posted By Archive User 02-24-2019 23:43
Found In Egroup: Graphics
\ view thread
I think I figured this out a few days ago. Set the main material's blending to "alpha mask" like you would a normal mask, and then on the video/texture shader set the alpha blending to "use current stage", and boom you've got an alpha mask with optional animation. #XPression
Posted By Archive User 02-22-2019 16:11
Found In Egroup: Connectivity
\ view thread
In your head selection Page in Dashboard, are the PIP assignments set to 'normal'? #Ultrix
Posted By Archive User 02-20-2019 04:22
Found In Egroup: Graphics
\ view thread
I've chosen to use a query in the datalinq table instead of selecting the row, but it does seem to work. Thanks for the help. #XPression
Posted By Archive User 02-19-2019 07:45
Found In Egroup: Graphics
\ view thread
I am currently working on a batting order graphic for a baseball videoboard project. The batting order graphic basically consists of three columns: jersey number, name, and batting average. The jersey number and batting average I am pulling straight from the statcrew XML. The name however ...
Posted By Archive User 02-19-2019 06:34
Found In Egroup: Graphics
\ view thread
I've had the monitor work sometimes, but overall it just sits there and does nothing. I would expect it to mirror the performance at the bottom at the very least... #XPression
Posted By Archive User 02-12-2019 02:11
Found In Egroup: Graphics
\ view thread
Is there a trick to making the debug monitor work in Xpression? It launches, but it doesn't seem to do anything. It would be super handy for finding runtime errors in the scripts that I write.
Posted By Archive User 01-25-2019 23:38
Found In Egroup: Facility Control
\ view thread
I'm pretty new to Dashboard, with little to no scripting background. I am trying to enter 3 separate values into 3 parameters with 3 decimal points and then generate an average value. I've created a parameter (Integer 16 bit), but whenever I try to enter a value with 3 decimal places, it rounds up or ...
Posted By Archive User 12-24-2018 20:59
Found In Egroup: Graphics
\ view thread
Is there a similar key for XLSX files? I seem to recall having this issue myself and I set a bunch of those registry keys to no effect. Ended up just hard coding the jersey number on the take item itself. #XPression
Posted By Archive User 12-14-2018 18:37
Found In Egroup: Facility Control
\ view thread
Yes, you can set the parameter to its Off value using: params.setValue("Oid.here", "index.here", "value.here"); #DashBoard
Posted By Archive User 11-27-2018 14:29
Found In Egroup: Facility Control
\ view thread
exactly, you can use something like the example below: function wrapButtonName(buttonName) ( var wrappedButtonName = " "+buttonName+" "; return wrappedButtonName; ) Regards, #DashBoard