Wasn't sure which forum to put this in:
I'm using Dashboard to see what input is currently in a keyer, and getting back a true or false response from the Acuity.
When I'm searching for input 1 (IN:1) inputs 10 through 19 will register as true as well, so I can't really trust that input 1 is active.
I tried searching for IN:01, but then got false as the response. Is there a way to be more specific when searching for an input?
Code used:
<button buttontype="push" height="86" left="537" top="482" width="154">
<task tasktype="ogscript">function callbackFunction(success, cmd, result, exception)
{
ogscript.debug(result.indexOf("IN:1") > -1 );
}
rosstalk.sendMessage(%const['hosts']['ACUITY.host']%, %const['hosts']['ACUITY.port']%, "XPT MLE:1:KEY:1:?", callbackFunction);</task>
</button>