synthet1c wrote :
really? didn't know you could do that, I use "find and rename" to batch edit things but I always delete the spaces manually, I'm going to have to get notepad++ I think... :)
The trick would even work in regular notepad, just replace ' ' (double space) for ' ' (single space) and repeat as long as there are replacements.
Inviato Tue 21 Feb 12 @ 11:05 am
Here is a little vid preview of the filter button as I had it in mind.
- The upper four buttons in the grid selects the effects the left turn of the filter button
- The middle four buttons in the grid selects the effects the right turn of the filter button
- If the effects allow it they will be processed together.
- The upper four buttons in the grid selects the effects the left turn of the filter button
- The middle four buttons in the grid selects the effects the right turn of the filter button
- If the effects allow it they will be processed together.
Things to do:
- Make it work PER deck. How can I set I variable that is recognized PER deck?
- Disable the effect on the button press, now its disabled on center only
Inviato Tue 21 Feb 12 @ 12:24 pm
first of to set variables on individual decks just dont have a dollar sign in front of the variable name.
next that is a cool idea jb, I like it... to do it should be relatively easy, use this as a template
param_smaller 50% ? var 'leftfilter' 1 ? effect 2 mapping : var 'leftfilter' 2 ? effect 3 mapping : var 'leftfilter' 3 ? effect 4 mapping : effect 1 mapping : var 'rightfilter' 1 ? effect 2 mapping : var 'rightfilter' 2 ? effect 3 mapping : var 'rightfilter' 3 ? effect 4 mapping : effect 1 mapping
then have the grid buttons set to
set 'leftfilter' 0
set 'leftfilter' 1
set 'leftfilter' 2
set 'leftfilter' 3
set 'rightfilter' 0
set 'rightfilter' 1
set 'rightfilter' 2
set 'rightfilter' 3
To disable the effects would be a little you could set a variable when the filter knob is off zero eg,
param_smaller 50% ? var 'leftfilter' 1 ? set 'lp fx on' 1 & mapping for low pass filter : var 'rightfilter' 1 ? set 'hp fx on' 1 & mapping for high pass filter : set 'lp fx on' 0 & set 'hp fx on' 0
then on the button you are querying the state of the shift you set when the knob is off zero
var 'lp fx on' 1 ? turn off lowpass : var 'hp fx on' 1 ? turn off highpass : nothing
you could do that for all the different filter knob effects you use
I also mapped the idj in a similar way, you are welcome to any of the code, as it looked like your one wasn't full

click the picture for the rest
next that is a cool idea jb, I like it... to do it should be relatively easy, use this as a template
param_smaller 50% ? var 'leftfilter' 1 ? effect 2 mapping : var 'leftfilter' 2 ? effect 3 mapping : var 'leftfilter' 3 ? effect 4 mapping : effect 1 mapping : var 'rightfilter' 1 ? effect 2 mapping : var 'rightfilter' 2 ? effect 3 mapping : var 'rightfilter' 3 ? effect 4 mapping : effect 1 mapping
then have the grid buttons set to
set 'leftfilter' 0
set 'leftfilter' 1
set 'leftfilter' 2
set 'leftfilter' 3
set 'rightfilter' 0
set 'rightfilter' 1
set 'rightfilter' 2
set 'rightfilter' 3
To disable the effects would be a little you could set a variable when the filter knob is off zero eg,
param_smaller 50% ? var 'leftfilter' 1 ? set 'lp fx on' 1 & mapping for low pass filter : var 'rightfilter' 1 ? set 'hp fx on' 1 & mapping for high pass filter : set 'lp fx on' 0 & set 'hp fx on' 0
then on the button you are querying the state of the shift you set when the knob is off zero
var 'lp fx on' 1 ? turn off lowpass : var 'hp fx on' 1 ? turn off highpass : nothing
you could do that for all the different filter knob effects you use
I also mapped the idj in a similar way, you are welcome to any of the code, as it looked like your one wasn't full
click the picture for the rest
Inviato Tue 21 Feb 12 @ 12:47 pm
very nice idea.
Inviato Tue 21 Feb 12 @ 1:50 pm
We still have some work to do :P
Inviato Wed 22 Feb 12 @ 12:43 am