Page 1 of 1

Pad for turning Capture on/off på Multisliders

Posted: 07 Feb 2013 12:37
by alloedee
Hello there.

I need to create some pads for turning capture on and off on some multisliders.

How can this be done?

Thx alloedee

Re: Pad for turning Capture on/off på Multisliders

Posted: 07 Feb 2013 15:02
by Softcore
Create script in pad on expression x, rising from 0 (up arrow)

Code: Select all

setattribute(multislider_name, 'capture', 0);
...will disable capture.

Code: Select all

setattribute(multislider_name, 'capture', 1);
...will enable capture.


Instead of having to use two pads (one for enabling, one for disabling) you can use a switch (or custom button in switch mode)

Create script in switch-custom button on expression x, any

Code: Select all

setattribute(multislider_name, 'capture', x);
will toggle capture.

;)

Re: Pad for turning Capture on/off på Multisliders

Posted: 08 Feb 2013 18:54
by alloedee
Thx you so much for an fast answer

That did the trick

-alloedee