Hi there! I encountered this problem:
A visualizer widget cannot send any message out with the send()
function.
AND, it will disable other widget's ability to send when using set()
function in the script of that visualizer.
What I'm trying to do is, whenever there is value to the visualizer, send a certain cc out, now I've tried using the visualizer itself to send, it failed, I tried to use the visualizer to set value of a button and let that button to send the message, it failed again.
here's the code of the visualizer script:
set("recordEnable1", 127, {send:true});
here's the code of the button:
if(value == 127) {
send("/control", 10, 126, 127);
}
else {
send("/control", 10, 126, 0);
}