(First off, thank you Charlie for providing this software! Very cool being able to use JS to handle various scenarios.)
I can't get the knob widget to respond to messages. If I change the "trackPan" widget type to Slider, then the exact same code works fine. But as a Knob, it doesn't respond. I'm using Android 2.3.4.
{
"name":"trackPan",
"type":"Knob",
"x":.2, "y":.4,
"width":.25, "height":.25,
//"usesRotation" : false,
//"centerZero" : true,
"min" : 0, "max" : 1,
"address" : "/track/pan",
},
{
"name":"panTest", //testing trackPan Knob widget lack of outside response
"type":"Slider",
"x":.3, "y":0,
"width":.25, "height":.25,
"isLocal": true,
//"address" : "/track/volume",
"onvaluechange" : "trackPan.setValue(this.value);"
//"isVertical" : true,
},