block midi note
-
hello team, I have 8 buttons in the form of pads which must trigger samples in 8 audioloopplayer (I use this to be able to drag and drop samples on the compiled plugin). Each button should play a different midi note. pad1 60 pad2 61.... I use for this in the reminders pad1 Synth.playNote(60, 127);
pad2> Synth.playNote(61, 127); ...but obviously all my samples are read at the same time. What I would like would be to have the possibility of blocking all the other notes of each audioloop player. that the AudioLoopPlayer1 only plays note 60 and does not receive any other notes from the other pads. and that’s where I’m stuck a bit, thank you ;) -
@yall
You want to do a check on note on and off whether the note coming in is the correct one for that synth. If it's not, you want to ignore the event.In each sampler, create a MIDI processor and in both on note on and on note off scripts write
Message.ignoreEvent(Message.getNoteNumber() != ThisSynthsTargetNote)
Replace ThisSynthsTargetNote with the correct note for each synth, obviously.
-
@aaronventure finally I got what I wanted by using the choke group processor in the midi functions of the modules. Thank you for your reply ;)