I'd like to trigger two pads (pads 2 and 3) from a single pad (pad 1). I tried:
On expression x
If pad1.x = 1
Then
pad2.x =1
pad3.x =1
Endif
Problem is that just turns the other pads to their on state. I need the single pad to make the two pads act like they were pressed and then released. I think some sort of delay might work, or maybe there's a different way to do this.
Triggering a pad from another pad
-
- Regular
- Posts: 294
- Joined: 24 Jan 2012 18:22
Re: Triggering a pad from another pad
Try making them trigger on pad1.x
Re: Triggering a pad from another pad
If by trigger you mean make it act like it was tapped itself then you may be out of luck.
If the action of the pad is scripted rather then menu set then you can call that script however.
Otherwise simply set or script the action within the tab itself.
Hope that helps
If the action of the pad is scripted rather then menu set then you can call that script however.
Otherwise simply set or script the action within the tab itself.
Hope that helps
iMac 2.8G i7 12G 10.6.8/10.7.2, Legacy Dexter/Lemur, Liine Lemur/iPad2, KMI SoftStep, 12Step & QuNeo , B-Controls, Mackie C4 etc
MaxMSP, Live Suite, Native Instrument stuff, etc Modified Virtual Guitar System etc All Projects/Modules © CC-BY-NC-SA[*][/b]
MaxMSP, Live Suite, Native Instrument stuff, etc Modified Virtual Guitar System etc All Projects/Modules © CC-BY-NC-SA[*][/b]
Re: Triggering a pad from another pad
Assuming the script is residing inside pad1 object
on expression x
pad2.x=x;
pad3.x=x;
on expression x
pad2.x=x;
pad3.x=x;