Pad for turning Capture on/off på Multisliders

Discuss Lemur and share techniques.
Post Reply
alloedee
Regular
Posts: 55
Joined: 29 Dec 2012 12:35

Pad for turning Capture on/off på Multisliders

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

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

Post 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.

;)
alloedee
Regular
Posts: 55
Joined: 29 Dec 2012 12:35

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

Post by alloedee »

Thx you so much for an fast answer

That did the trick

-alloedee
Post Reply