Hi all,
I'm trying to map my reloop mixtour, and my goal is to set a knob to control the effect slider 1, and also have the effect activate when the knob is over 0%
Here is what I have set on the knob:
deck 2 effect_slider 1 & param_bigger 0% ? effect_active 1 : nothing
I know the param_bigger 0% condition tests well as I could trigger another command, but effect_active 1 doesn't seem to have any effect in this context.
Thanks for your help,
Alex
I'm trying to map my reloop mixtour, and my goal is to set a knob to control the effect slider 1, and also have the effect activate when the knob is over 0%
Here is what I have set on the knob:
deck 2 effect_slider 1 & param_bigger 0% ? effect_active 1 : nothing
I know the param_bigger 0% condition tests well as I could trigger another command, but effect_active 1 doesn't seem to have any effect in this context.
Thanks for your help,
Alex
Mensajes Sat 22 Dec 18 @ 10:16 pm
Try this one
deck 2 effect_slider 1 & param_bigger 0% ? effect 1 active : nothing
deck 2 effect_slider 1 & param_bigger 0% ? effect 1 active : nothing
Mensajes Sun 23 Dec 18 @ 8:00 am
Don't you want to turn it off on 0% ?
I would try ...
effect_slider 1 & param_bigger 1% ? effect_active on : effect_active off
I would try ...
effect_slider 1 & param_bigger 1% ? effect_active on : effect_active off
Mensajes Mon 24 Dec 18 @ 12:25 am
The second one works. Thanks!
Both scripts are very similar, and it's odd that this would only work if we specify the effect_active off part.
Oh well :)
Both scripts are very similar, and it's odd that this would only work if we specify the effect_active off part.
Oh well :)
Mensajes Mon 24 Dec 18 @ 9:51 pm