You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the MultiButton docs page: "ontouchstart": "oscManager.sendOSC('/button', 'ii', this.childID, this.value)",
which (on Android at least) results in no message being received. The code that works: "ontouchstart": "oscManager.sendOSC(['/button', 'ii', this.childID, this.value])",
which matches the interface OSCManager.prototype.sendOSC = function(msg, successCallback, failureCallback) (though supplying only the first arg).
On the MultiButton docs page:
"ontouchstart": "oscManager.sendOSC('/button', 'ii', this.childID, this.value)",
which (on Android at least) results in no message being received. The code that works:
"ontouchstart": "oscManager.sendOSC(['/button', 'ii', this.childID, this.value])",
which matches the interface
OSCManager.prototype.sendOSC = function(msg, successCallback, failureCallback)
(though supplying only the first arg).https://github.com/charlieroberts/Control/blob/master/Android/Control/assets/www/js/OSCManager.js#L10
The "Scripting" docs page makes the same error. Of course, it's possible that the docs are right but the Android code is wrong.
Thanks for Control!
The text was updated successfully, but these errors were encountered: