Page 1 of 1

Triggering a pad from another pad

Posted: 01 Feb 2014 22:47
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.

Re: Triggering a pad from another pad

Posted: 02 Feb 2014 03:03
by electrofux
Try making them trigger on pad1.x

Re: Triggering a pad from another pad

Posted: 02 Feb 2014 04:49
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

Re: Triggering a pad from another pad

Posted: 06 Feb 2014 13:21
by Softcore
Assuming the script is residing inside pad1 object

on expression x

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


;)