Trying to map a Behringer BCR2000 for effects and i'm having trouble with finding the correct script to assign individual effects. Example A button to toggle flanger on/off. I can map the par knobs no problem, but when i do
deck 1 effect "flanger" active , nothing happens. I would like have an on/off fand knobs for each of my different effects. Mapping cues and loops work.
deck 1 effect "flanger" active , nothing happens. I would like have an on/off fand knobs for each of my different effects. Mapping cues and loops work.
Posted Sun 26 Jun 11 @ 1:04 pm
its effect 'flanger' active
not effect "flanger" active
hope this helps,
john
not effect "flanger" active
hope this helps,
john
Posted Sun 26 Jun 11 @ 1:51 pm
Blulite wrote :
its effect 'flanger' active
not effect "flanger" active
not effect "flanger" active
Either way works..............atleast for me.
Huey
Posted Sun 26 Jun 11 @ 2:11 pm
ok i will try that, my eyes, lol
Posted Sun 26 Jun 11 @ 2:20 pm
@huey, i always use the script thats shown in the mappings list just to be on the safe side. always use the exact syntax.
Posted Sun 26 Jun 11 @ 3:23 pm
it didnt work, even tried on a knob. i have programmed other knobs to move/ shift loops
i.e. param_greater 50% ? deck 1 loop_move -1 : deck 1 loop_move +1
those work, just need correct syntax for "toggling" a knob where param min value is set at 0 and max 1, so that slight movement turns on effect. Also need one to divide loop by 1/2 and double loop. I treid to "replace" " loop move" with loop_half etc still does work. HELP.
i.e. param_greater 50% ? deck 1 loop_move -1 : deck 1 loop_move +1
those work, just need correct syntax for "toggling" a knob where param min value is set at 0 and max 1, so that slight movement turns on effect. Also need one to divide loop by 1/2 and double loop. I treid to "replace" " loop move" with loop_half etc still does work. HELP.
Posted Mon 27 Jun 11 @ 1:18 pm
ahh hold on, i know why it wont work, i just realised, why did i not think of it before..lol...its behringer...rofpmslmao
Posted Mon 27 Jun 11 @ 3:04 pm
Do you 'Key-Learn' VDJ that specific button when mapping?
Posted Mon 27 Jun 11 @ 4:34 pm
yes i did key learn and action learn....... behringer lol ok i take it that it doesnt "get along" with vdj..
Posted Mon 27 Jun 11 @ 6:54 pm
to have a knob control a parameter and turn it on you can use
"param_greater 0% ? deck # effect "effect_name" active on & deck # effect "effect_name" slider # : deck # effect "effect_name" active off
you need to change "effect_name" to the relevant effect and '#' to the relavant number
and try "param_greater 50% ? deck 1 loop 50% : deck 1 loop 200%" for the loop, this will enable you to get the loop size extremely small.
"param_greater 0% ? deck # effect "effect_name" active on & deck # effect "effect_name" slider # : deck # effect "effect_name" active off
you need to change "effect_name" to the relevant effect and '#' to the relavant number
and try "param_greater 50% ? deck 1 loop 50% : deck 1 loop 200%" for the loop, this will enable you to get the loop size extremely small.
Posted Mon 27 Jun 11 @ 7:39 pm