Note Number From Event ID
-
Hey!
How do I get the note number that was associated with an event id? I tried checking the docs but turned up blank
Thanks!
-
@Casmat how are you getting the ID?
-
@d-healey from the note on callback.. Im trying to implement an idea that could give me a last note retriggering feature on the mono glide script: Basically, on each note pressed, an event id is created and put into an array. When the note is let go, the associated event id is removed from the array. This array creates this “note playback queue” where the last event in the array is the note that will play once the current note is let go. To actually play the note on retrigger, I’m trying to find a way to get the note number for the play note function from the event Id in the array
-
@Casmat store the note number when you store the ID.
This is what a midi list is for
-
@d-healey yup, makes sense! Thanks!