If any one can help..Thank you Dj Im trying to do a loop roll and effect with EQ while press BUT I need the deck EQ to all reset back. when not press
loop_roll 0.4 & effect_active 5 while_pressed & eq_low -20% deck 2 & eq_high +10% while_press <<<< this is ok but will not reset EQ back.
loop_roll 0.4 & effect_active 5 while_pressed & eq_low -20% deck 2 & eq_high +10% while_press <<<< this is ok but will not reset EQ back.
geposted Thu 29 Dec 16 @ 2:24 am
Maybe this works:
up ? eq_low 0% & eq_high 0% : loop_roll 0.4 & effect_active 5 while_pressed & eq_low -20% deck 2 & eq_high +10% while_press
up ? eq_low 0% & eq_high 0% : loop_roll 0.4 & effect_active 5 while_pressed & eq_low -20% deck 2 & eq_high +10% while_press
geposted Thu 29 Dec 16 @ 12:25 pm
its while_pressed not while_press, and you should add that after every action you need to have it work temporary (loop_roll doesnt need that) .
So it should be ..
loop_roll 0.4 & effect_active 5 while_pressed & eq_low -20% while_pressed & eq_high +10% while_pressed
btw, loop_roll 0.4 ?? if u want 1/4 beat, it should be loop_roll 0.25
Also effect_active 5 is probably triggering the effect on slot 5. Do you have 5 slots ? Perhaps you would want to specify the effect itsef using its name ? e.g. effect_active "Echo"
So it should be ..
loop_roll 0.4 & effect_active 5 while_pressed & eq_low -20% while_pressed & eq_high +10% while_pressed
btw, loop_roll 0.4 ?? if u want 1/4 beat, it should be loop_roll 0.25
Also effect_active 5 is probably triggering the effect on slot 5. Do you have 5 slots ? Perhaps you would want to specify the effect itsef using its name ? e.g. effect_active "Echo"
geposted Thu 29 Dec 16 @ 1:23 pm
Ok Thank you I will try that I was doing a loop roll and Echo & EQ in back ground at a low output while pressing then reset.( like VDj-7 EchoDoppler ) Thanks
geposted Thu 29 Dec 16 @ 6:37 pm