cancel Synth.noteOffDelayedByEventId(id, delay amount)
-
Is there a way to cancel an event made like this
local id = Synth.addNoteOn(1, 60, velocity, delay amount); Synth.noteOffDelayedByEventId(id, delay amount)
As I understand it this code will set an event in the midi buffer, some sort of queue?
Is it possible to remove it from the buffer? -
@ulrik as soon as the function
Synth.noteOffDelayedByEventId(id, delay amount)
has been executed, this function
Synth.isArtificialEventActive(id)
will print false even if the note still is sounding because of the delayed note off.