Hey guys,
need help with a little thing here.
I need a function that transposes every incoming note on midi channel 2 +24 semitones
and leaves everything on Midi Channel 1 alone (pass-through).
Anyone can help me here?
Thanks & best,
tL.
A technical support community for Apple Logic Pro users.
function HandleMIDI(event) {
if(event.channel==2 && event instanceof Note) {
event.pitch = event.pitch + 24;
}
event.send();
}