Hello,
I use the FLX 10 and a RX3 with VDJ.
Is it possible to have the Echo Out Effect on the "Space" Soundcolor FX Button.
I searched the forum and watched many videos (especially form Klaus Mogensen) but I could not map it properly.
On FLX 10 I used the script
Then after pressing it is activated immediatly on all decks. I can adjust length with the filter knob when I first set it in the right position.
I wanted to have an activated 'Space' Button an then use the filterknob to adjust the parameter of the effect but only on one channel not on the master.
So I also tried to use klaus mogenens' code and try to map a custom button:
Anybody has an advice to to that?
I think it is possible to map it anyhow, but I don't get how to?
Thanks in advance.
I use the FLX 10 and a RX3 with VDJ.
Is it possible to have the Echo Out Effect on the "Space" Soundcolor FX Button.
I searched the forum and watched many videos (especially form Klaus Mogensen) but I could not map it properly.
On FLX 10 I used the script
deck all activate_soundcolorfx 'Echo Out'
Then after pressing it is activated immediatly on all decks. I can adjust length with the filter knob when I first set it in the right position.
I wanted to have an activated 'Space' Button an then use the filterknob to adjust the parameter of the effect but only on one channel not on the master.
So I also tried to use klaus mogenens' code and try to map a custom button:
effect 'Echo Out' slider 1
param_greater 52% ? effect_slider 'Echo Out' 1 & effect_active 'Echo Out' on : param_smaller 48% ? effect_slider 'Echo Out' 1 & effect_active 'Echo Out' on : effect_slider 'Echo Out' 1 & effect_active 'Echo Out' off
effect_slider 'Echo Out' 1 50% & effect_active 'Echo Out' off
repeat_start_instant 'resetFilter' 100ms & load_pulse ? nothing : deck 1 effect_slider 'Echo Out' 1 50%
Anybody has an advice to to that?
I think it is possible to map it anyhow, but I don't get how to?
Thanks in advance.
Posted Fri 18 Oct 24 @ 8:07 am
Echo Out cannot be used as a color effect.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
Posted Fri 18 Oct 24 @ 2:31 pm
PhantomDeejay wrote :
Echo Out cannot be used as a color effect.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
Actually it is possible I've sorted it out.
You need to map a custom button, then it is working with the code of @klausmogensen
on button Space I mapped the following
deck all filter_activate 'reverb' & filter 50%
on the filter fx parameter the following code
filter_activate 'filter' ? custom_button 5 : filter_activate 'reverb' ? custom_button 2 : filter
custom button 2 is the echo out effect, custom button 5 is the vst plugin DJMFilter
on custom button 2 I used Klaus Mogensen code for the VST and modified it:
param_greater 51% ? effect "Echo Out" slider 1 & effect "Echo Out" active on : param_smaller 49% ? effect "Echo Out" slider 1 & effect "Echo Out" active on : effect "Echo Out" slider 1 & effect "Echo Out" active off
it is working like it should be.
Posted Sun 20 Oct 24 @ 3:13 pm
marcthedeejay wrote :
Actually it is possible I've sorted it out.
You need to map a custom button, then it is working with the code of @klausmogensen
on button Space I mapped the following
on the filter fx parameter the following code
custom button 2 is the echo out effect, custom button 5 is the vst plugin DJMFilter
on custom button 2 I used Klaus Mogensen code for the VST and modified it:
it is working like it should be.
PhantomDeejay wrote :
Echo Out cannot be used as a color effect.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
Actually it is possible I've sorted it out.
You need to map a custom button, then it is working with the code of @klausmogensen
on button Space I mapped the following
deck all filter_activate 'reverb' & filter 50%
on the filter fx parameter the following code
filter_activate 'filter' ? custom_button 5 : filter_activate 'reverb' ? custom_button 2 : filter
custom button 2 is the echo out effect, custom button 5 is the vst plugin DJMFilter
on custom button 2 I used Klaus Mogensen code for the VST and modified it:
param_greater 51% ? effect "Echo Out" slider 1 & effect "Echo Out" active on : param_smaller 49% ? effect "Echo Out" slider 1 & effect "Echo Out" active on : effect "Echo Out" slider 1 & effect "Echo Out" active off
it is working like it should be.
Hi , can you explain how this work? i try and no work
Posted Fri 15 Nov 24 @ 9:33 pm
J@vierC wrote :
Hi , can you explain how this work? i try and no work
marcthedeejay wrote :
Actually it is possible I've sorted it out.
You need to map a custom button, then it is working with the code of @klausmogensen
on button Space I mapped the following
on the filter fx parameter the following code
custom button 2 is the echo out effect, custom button 5 is the vst plugin DJMFilter
on custom button 2 I used Klaus Mogensen code for the VST and modified it:
it is working like it should be.
PhantomDeejay wrote :
Echo Out cannot be used as a color effect.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
That's why you can't properly remap it on "Space" color effect.
You can however remap any other "deck specific" button to simply effect_active 'echo out' and it will work.
Actually it is possible I've sorted it out.
You need to map a custom button, then it is working with the code of @klausmogensen
on button Space I mapped the following
deck all filter_activate 'reverb' & filter 50%
on the filter fx parameter the following code
filter_activate 'filter' ? custom_button 5 : filter_activate 'reverb' ? custom_button 2 : filter
custom button 2 is the echo out effect, custom button 5 is the vst plugin DJMFilter
on custom button 2 I used Klaus Mogensen code for the VST and modified it:
param_greater 51% ? effect "Echo Out" slider 1 & effect "Echo Out" active on : param_smaller 49% ? effect "Echo Out" slider 1 & effect "Echo Out" active on : effect "Echo Out" slider 1 & effect "Echo Out" active off
it is working like it should be.
Hi , can you explain how this work? i try and no work
Yes the first posted codes you have to put in the setttings mapping of the controller (Button to activate the effect in my case the space soundcolor fx and the knob for the parameters of the sound color fx).
the third code must be on a custom button ( I used button 5 for this ).
Posted Sat 16 Nov 24 @ 6:53 am