Hey guys,
I have an MC6000. There are these two knobs and two buttons in the middle of the mixer that do not do anything. I would like to program them to do the noise bell on the respective decks (so if i hit param 1, it will turn it on on the left deck and vice versa on right deck). I also want the knobs to control both sides' parameters. Can anyone help with the script?
thank you!
alpaca
I have an MC6000. There are these two knobs and two buttons in the middle of the mixer that do not do anything. I would like to program them to do the noise bell on the respective decks (so if i hit param 1, it will turn it on on the left deck and vice versa on right deck). I also want the knobs to control both sides' parameters. Can anyone help with the script?
thank you!
alpaca
Mensajes Mon 19 Sep 11 @ 7:19 pm
need a bit of clarification...
did you want the knobs to control two parameters of the noisebell effect on each deck, which is determined by which param button is pressed, or just one parameter for each deck depending on the knob? also you should note that noisebell is pretty much a global effect as in it makes the same sound no matter which deck you use so you could just assign it to the default deck and use the other param knob and button for something else on the default deck.
If you want to try the second option.
knob
device side "left" ? deck default effect "noisebell" slider 3 : nothing
button
device_side "left" ? deck default effect "noisebell" effect active : nothing
led
device_side "left" ? deck default effect "noisebell" effect active on ? on : off : nothing
the "nothings" leave room for something else for the other knob and button on the right side of the controller..
did you want the knobs to control two parameters of the noisebell effect on each deck, which is determined by which param button is pressed, or just one parameter for each deck depending on the knob? also you should note that noisebell is pretty much a global effect as in it makes the same sound no matter which deck you use so you could just assign it to the default deck and use the other param knob and button for something else on the default deck.
If you want to try the second option.
knob
device side "left" ? deck default effect "noisebell" slider 3 : nothing
button
device_side "left" ? deck default effect "noisebell" effect active : nothing
led
device_side "left" ? deck default effect "noisebell" effect active on ? on : off : nothing
the "nothings" leave room for something else for the other knob and button on the right side of the controller..
Mensajes Mon 19 Sep 11 @ 10:15 pm
Thank you for the help! That is what I wanted but it doesn't seem to work. is there another syntax i should try?
thank you so much!
thank you so much!
Mensajes Mon 19 Sep 11 @ 10:25 pm
try mapping just this
knob
effect "noisebell" slider 3
button
effect "noisebell" effect active
Im at work, so not sure slider 3 is correct, but im pretty sure that makes the sound, also check the spelling of "noisebell", maybe its "noise_bell" or "noise bell" or something else
knob
effect "noisebell" slider 3
button
effect "noisebell" effect active
Im at work, so not sure slider 3 is correct, but im pretty sure that makes the sound, also check the spelling of "noisebell", maybe its "noise_bell" or "noise bell" or something else
Mensajes Mon 19 Sep 11 @ 10:47 pm
it works!!! i had to combine your code with the native one for another button on the mc6000 but it works great! thank you!
Mensajes Tue 20 Sep 11 @ 11:26 pm
The Param buttons on the MC6000 do not belong on the left or the right side of the controller. That's why the original code didn't work.
However here's a quick code snippet to check if you have it done correctly:
Button Param1:
deck left effect "noisebell" active
Knob Param1:
deck left effect "noisebell" slider 3
Button Param2:
deck right effect "noisebell" active
Knob Param2:
deck right effect "noisebell" slider 3
However here's a quick code snippet to check if you have it done correctly:
Button Param1:
deck left effect "noisebell" active
Knob Param1:
deck left effect "noisebell" slider 3
Button Param2:
deck right effect "noisebell" active
Knob Param2:
deck right effect "noisebell" slider 3
Mensajes Wed 21 Sep 11 @ 6:55 am