Am I missing something really simple here as I can't get this to work...
My custom module has a function:
var rootKeyLabel = { 'rootKey': '/rootKey/Label' }
function addrootKeyLabel(keyboardText) {
console.log("address that rootKeyLabel is sent to is ", rootKeyLabel);
receiveOsc({
address: rootKeyLabel,
args: [
{ type: 's', value: keyboardText }
]
});
console.log("key Name sent to Panel by addRootKeyLabel is ", keyboardText);
return;
}
My text widget is set up like this:
And my console logs this:
But the label will not update - what am I missing here??!