Hi,
I have a menu with those values, which are meant to be [midi ch, cc] :
{
"Insérer Silence entre": [ 2, 95 ],
"Gauche au curseur": [ 7, 28 ],
"Droit au curseur": [ 7, 27 ],
"Gauche": [ 7, 52 ],
"Droit": [ 7, 51 ],
"Sur sélection": [ 7, 87 ],
"Fixer Intervalle": [ 7, 113 ],
"Inverser": [ 7, 127 ],
"Suivent marqueurs": [ 7, 25 ]
}
I scripted this :
send('/control',get(('this')[0]),get(('this')[1]),127)
But nothing... it just send 0.
I tried watching this :
console.log(get('this')[1])
or that
console.log(get('this')[0])
return the expected values...
So, what's wrong there ?
Thank you