Hello everyone I've recently bought a DJ Control Instinct by Hercules and I was wondering if I could remap some functions so I could get more from this controller. I've a list of functions that I need and some others that I've figured out reading the FAQ & guides of VDJ8 Script.
So this is what i need:
In Effect mode:
Effect button 1: Activates effect 1 while pressed (done), adjust effect 1 parameter with Treble (need)
Effect button 2: Activates effect 2 while pressed (done), adjust effect 2 parameter with Mid (need)
Effect button 3: Activates effect 3 while pressed (done), adjust effect 3 parameter with Low (need)
Hope You guys can help me. Thanks!
So this is what i need:
In Effect mode:
Effect button 1: Activates effect 1 while pressed (done), adjust effect 1 parameter with Treble (need)
Effect button 2: Activates effect 2 while pressed (done), adjust effect 2 parameter with Mid (need)
Effect button 3: Activates effect 3 while pressed (done), adjust effect 3 parameter with Low (need)
Hope You guys can help me. Thanks!
发表时间 Thu 04 Jul 19 @ 3:21 pm
effect_slider 1 1 (or just effect_slider 1)
effect_slider 2 1
effect_slider 3 1
or if you want your EQ knobs to work as FX sliders, only when effect is active...
effect_active ? effect_slider 1 : eq_high
effect_active 2 ? effect_slider 2 1 : eq_mid
effect_active 3 ? effect_slider 3 1 : eq_low
However, in this case, you ll get the knobs working after the hardware position catches the software one, so you may need to change the ControllerTakeOverMode setting to Instant
effect_slider 2 1
effect_slider 3 1
or if you want your EQ knobs to work as FX sliders, only when effect is active...
effect_active ? effect_slider 1 : eq_high
effect_active 2 ? effect_slider 2 1 : eq_mid
effect_active 3 ? effect_slider 3 1 : eq_low
However, in this case, you ll get the knobs working after the hardware position catches the software one, so you may need to change the ControllerTakeOverMode setting to Instant
发表时间 Thu 04 Jul 19 @ 4:06 pm