Controller Change Events #68
-
Hi, I need to get damper/sustain on/off messages. I've tried setting up a handler for controllerchange events, but no events are logged. The handlers for noteon and noteoff events work as expected. I've confirmed the midi file I'm using has damper on/off messages. Is there something else required to receive controllerchange events and damper messages? synthesizer.eventHandler.addEvent(
"controllerchange",
"controllerchange",
(e) => {
console.log(e);
}
);
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi, I hope that this helps and I apologize for the incorrect behavior with the event system. |
Beta Was this translation helpful? Give feedback.
-
It's working now. Thanks! |
Beta Was this translation helpful? Give feedback.
It's working now. Thanks!