Scripting - Pads Being Held After Pressed
Posted: 21 Jul 2014 18:56
I have an issue with my current template.
Basically I have a small script to handle NOTEON and NOTEOFF on my pads. It's working, except the pad seems to be held and the note continues to play even though I have removed my finger from the pad. I have tried using the following in my NOTEOFF script:
It's being fired because the Monitor is displaying the correct value. I have attached my jazz file below if anyone can help.
Note: I've had to set the midi channel to none on the actual pads, because I don't want it to send out it's default notes. My NOTEON and NOTEOFF script will do that.
Thanks
Basically I have a small script to handle NOTEON and NOTEOFF on my pads. It's working, except the pad seems to be held and the note continues to play even though I have removed my finger from the pad. I have tried using the following in my NOTEOFF script:
Code: Select all
decl t = firstof(x);
Monitor.value = octave[t];
noteout(0,octave[t],0,1);
Note: I've had to set the midi channel to none on the actual pads, because I don't want it to send out it's default notes. My NOTEON and NOTEOFF script will do that.
Thanks