Assign single MIDI note
-
I think, this should be fairly easy to achive, but can't figure it out:
How can i assign a single midi note to a module (e.g. a AudioLoopPlayer), so that all other notes won't trigger it.Thanks in advance! :-)
-
@toxonic I think what you want is to filter out all the notes you don't want.
Something like this in on note on.
if (Message.getNoteNumber() != 60) // Ignore everything except note 60 Message.ignoreEvent(true);
-
@d-healey This was exactly, what i was looking for! :-) Thanks!