Production Switchers

 View Only
  • 1.  Attaching custom control to source/button?

    Posted 03-18-2016 16:46
    I don't believe this is possible, but in case it is, I'll ask: Is there a way to attach a custom control to a source? For instance, say I want to have a source feed an aux output when I turn on a keyer, and then switch back to a different source when that keyer is turned off, so there would be a custom control built that is executed automatically on the "on" status, and another custom control that is executed on the "off" status? If not, can that be considered for a future release?


  • 2.  RE: Attaching custom control to source/button?

    Posted 03-19-2016 22:00
    Attachments are not possible in Carbonite. Also Logic based on State is not possible. You might be able to build this in DashBoard Version 8. You would have to understand the Visual Logic pages but you might be able to track this data and perform these call in dashboard.
    #Carbonite


  • 3.  RE: Attaching custom control to source/button?

    Posted 03-21-2016 15:49
    Yes you can do this in Dashboard.
    #Carbonite


  • 4.  RE: Attaching custom control to source/button?

    Posted 03-23-2016 14:52
    Here is an example of what you asked. It changes color of the TEST button when you turn on MLE-1 KEY-1 on or off. You can substitute the if and eles statement for anything you want. Note just chang the IP add. to your switcher's add.





    var oldValue = ogscript.getObject('0x992-Old');
    var xpt = params.getValue(0x992,0);

    if (oldValue == xpt)
    return;
    ogscript.putObject('0x992-Old', xpt);

    if (xpt == 1)
    ogscript.setStyle('TEST-1', 'fg#55BF3F;size:big');
    else
    ogscript.setStyle('TEST-1', 'fg#FF7FFC;size:big');





    #Carbonite