Ok this is what I am trying to do..
Basically with each press of the assigned button (no midi controller, this is only at my Laptop key board), I want the following:
1. Bass at Active Deck will graducally reduce by 5%
2. Bass at Default Deck will graducally increase by 5%
3. Bass at Default Deck will eventually increase to 50% and then stop and will not move any higher.
So I write the following script
deck active eq_low -5% & deck default eq_low 50% ? nothing : eq_low +5%
This script does 1 & 2 but not 3. If I keep pressing the assigned key Bass will keep increasing and will not stop at 50%.
Please suggest.
Regards
Basically with each press of the assigned button (no midi controller, this is only at my Laptop key board), I want the following:
1. Bass at Active Deck will graducally reduce by 5%
2. Bass at Default Deck will graducally increase by 5%
3. Bass at Default Deck will eventually increase to 50% and then stop and will not move any higher.
So I write the following script
deck active eq_low -5% & deck default eq_low 50% ? nothing : eq_low +5%
This script does 1 & 2 but not 3. If I keep pressing the assigned key Bass will keep increasing and will not stop at 50%.
Please suggest.
Regards
发表时间 Fri 12 Nov 10 @ 10:25 pm
any script writers.. please help...
发表时间 Sat 13 Nov 10 @ 4:48 pm
Why dont you use the eq-crossfader ?
Try to assign a button as .. eq_crossfader_low +5%
and another one as .. eq_crossfader_low +5%
I think it does the same job
[EDIT] Sorry ..
The correct are ...
eq_crossfader_low +5%
eq_crossfader_low -5%
Try to assign a button as .. eq_crossfader_low +5%
and another one as .. eq_crossfader_low +5%
I think it does the same job
[EDIT] Sorry ..
The correct are ...
eq_crossfader_low +5%
eq_crossfader_low -5%
发表时间 Sun 14 Nov 10 @ 12:32 pm
Ok First of all, these 2 commands are exactly same.
I like to achive my desired effect with only 1 button as while mixing I like to keep myself focused with other effect.
Any other suggestions please.
I like to achive my desired effect with only 1 button as while mixing I like to keep myself focused with other effect.
Any other suggestions please.
发表时间 Sun 14 Nov 10 @ 6:52 pm
Try ..
deck 1 select ? eq_crossfader_low -5% : eq_crossfader_low +5% or the opposite. (+-)
deck 1 select ? eq_crossfader_low -5% : eq_crossfader_low +5% or the opposite. (+-)
发表时间 Sun 14 Nov 10 @ 7:06 pm
thanks however this script plays with EQ Crossfader however I like to play with EQ itself and not the EQ Crossfader.
Anyway It does not do what I set out to do..Thanks though..
Anyone else please
Anyway It does not do what I set out to do..Thanks though..
Anyone else please
发表时间 Tue 16 Nov 10 @ 2:54 am