Pads: preventing accidental presses?
Posted: 20 Jan 2015 01:08
Hi all,
I'm using a Pads object with the following OSC output, where the address of each pad is taken from a string array (v):
Everything works as expected. The trouble is I'm using them to trigger DAW actions, so, if I happen to touch a neighboring pad I can trigger unwanted actions. How can I prevent additional messages being sent whilst one pad is already held?
Thanks for any help.
I'm using a Pads object with the following OSC output, where the address of each pad is taken from a string array (v):
Code: Select all
//On Expression: x goes from 0 to positive
oscout(0,'/'+v[firstof(x)],1);
Thanks for any help.