Hello there.
I need to create some pads for turning capture on and off on some multisliders.
How can this be done?
Thx alloedee
Pad for turning Capture on/off på Multisliders
Re: Pad for turning Capture on/off på Multisliders
Create script in pad on expression x, rising from 0 (up arrow)
...will disable capture.
...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
will toggle capture.
Code: Select all
setattribute(multislider_name, 'capture', 0);
Code: Select all
setattribute(multislider_name, 'capture', 1);
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);
Re: Pad for turning Capture on/off på Multisliders
Thx you so much for an fast answer
That did the trick
-alloedee
That did the trick
-alloedee