Hi,
I have cubase 14 (latest patch) and i am developing a midi remote script, but none of my console.log messages appear in the script console .
i.e
function makeButtons(page) {
for (var i = 0; i < buttons.length; i++) {
(function(def) {
**console.log("making button "+def.category+" "+def.name);**
var btn = deviceDriver.mSurface.makeButton(i, 0, 1, 1.5);
am i being stupid ? or do i have to set ‘something’ to enable logging ?
also (as an aside) - is there a callback function available that lets me inspect any incomming midi messages (I mean globally within the script)
sorry i’m a newbie …

