Triggering a pad from another pad

Discuss Lemur and share techniques.
Post Reply
Rtech
Newbie
Posts: 26
Joined: 21 Dec 2012 20:30

Triggering a pad from another pad

Post by Rtech »

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.
electrofux
Regular
Posts: 294
Joined: 24 Jan 2012 18:22

Re: Triggering a pad from another pad

Post by electrofux »

Try making them trigger on pad1.x
Macciza
Regular
Posts: 1315
Joined: 07 Dec 2011 04:57
Location: Sydney, Australia.

Re: Triggering a pad from another pad

Post by Macciza »

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
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]
Softcore
Regular
Posts: 1613
Joined: 04 Nov 2012 08:34

Re: Triggering a pad from another pad

Post by Softcore »

Assuming the script is residing inside pad1 object

on expression x

pad2.x=x;
pad3.x=x;


;)
Post Reply