Ok guys I have written this basic script
deck active eq_low -1% & deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
This is what it does,
at the press of the assigned button:
1. Bass on my current track will gradually become low and to zero
2. Bass on my incoming track will gradually become higher and to 100%
3. Bass Eq Crossfader will gradually and completely move from current track to incoming track
4. Volume of the current tarck will gradually become zero
5. Volume of the incoming track will gradually become 100%
What I would like to do is for Step 2. I want the Bass to gradually go up but stop at 50%.
I am sure that there is an argument I am missing in this script. And Idea.
Cheers all
Logan
deck active eq_low -1% & deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
This is what it does,
at the press of the assigned button:
1. Bass on my current track will gradually become low and to zero
2. Bass on my incoming track will gradually become higher and to 100%
3. Bass Eq Crossfader will gradually and completely move from current track to incoming track
4. Volume of the current tarck will gradually become zero
5. Volume of the incoming track will gradually become 100%
What I would like to do is for Step 2. I want the Bass to gradually go up but stop at 50%.
I am sure that there is an argument I am missing in this script. And Idea.
Cheers all
Logan
Posté Thu 08 Jul 10 @ 2:52 am
You need to check for the level of the second deck.
try this as the last statement:
deck default volume 50% ? nothing : deck default volume +1%
(Can't test it here in the moment)
Greets, Heiko
try this as the last statement:
deck default volume 50% ? nothing : deck default volume +1%
(Can't test it here in the moment)
Greets, Heiko
Posté Thu 08 Jul 10 @ 2:55 am
2. Bass on my incoming track will gradually become higher and to 100%
[Please don't quote the post right before your message - This is unnecessary and also makes your message more difficult to read when the quoted text is not properly distinguished from your own reply.]
Thanks a lot for such a prompt reply.
I took your advice and this is what I had written:
deck active eq_low -1% & deck default eq_low 50% ? nothing : deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
eq_low is not stopping at 50% and it is going all the way up to 100%.
I want this eq_low to stop at 50% after gradually increase from 0%.
cheers
Logan
[Please don't quote the post right before your message - This is unnecessary and also makes your message more difficult to read when the quoted text is not properly distinguished from your own reply.]
Thanks a lot for such a prompt reply.
I took your advice and this is what I had written:
deck active eq_low -1% & deck default eq_low 50% ? nothing : deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
eq_low is not stopping at 50% and it is going all the way up to 100%.
I want this eq_low to stop at 50% after gradually increase from 0%.
cheers
Logan
Posté Thu 08 Jul 10 @ 3:50 am
Then try it with param_greater 50%
Posté Thu 08 Jul 10 @ 4:11 am
This is a great idea for cutting, lol!! Ok so I went with this "deck active eq_low 50% & deck default eq_low 25%".................OK heres where it gets tricky.
I want the bass on the active deck to go back up when I pull the fader back, hmmm........let me try to explain it better. Right now when I move the fader to the default deck the bass drops on the active deck (which is what I want) but when I pull the fader back the bass does not return to where it was. Hope that makes sense.
Hope to hear from ya soon
Huey
I want the bass on the active deck to go back up when I pull the fader back, hmmm........let me try to explain it better. Right now when I move the fader to the default deck the bass drops on the active deck (which is what I want) but when I pull the fader back the bass does not return to where it was. Hope that makes sense.
Hope to hear from ya soon
Huey
Posté Thu 08 Jul 10 @ 9:30 pm
I am still not using Time Coded Vinyls or Midi Contoller hence cannot comment. I am really trying to push the boundaries with only Key board.
Posté Thu 08 Jul 10 @ 11:06 pm
@Logan, well from the sounds of it your gettin it done!! Keep the ideas comin bro!! I though about maybe asking this in the hardware thread but you already had it here, lol!!
Huey
Huey
Posté Fri 09 Jul 10 @ 12:05 am
Ok I now have tried both of these scripts
deck active eq_low -1% & param_greater 50% deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
deck active eq_low -1% & deck default eq_low +1% param_greater 50% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
I am now getting Syntax error.
deck active eq_low -1% & param_greater 50% deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
deck active eq_low -1% & deck default eq_low +1% param_greater 50% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
I am now getting Syntax error.
Posté Fri 09 Jul 10 @ 3:16 am
wrote this now...
deck active eq_low -1% & param_greater 50% ? deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
no syntax error however now doing what I am trying to do..
deck active eq_low -1% & param_greater 50% ? deck default eq_low +1% & eq_crossfader_low +1% & deck active volume -1% & deck default volume +1%
no syntax error however now doing what I am trying to do..
Posté Fri 09 Jul 10 @ 3:25 am
param_greater will not work because this is for use with a MIDI controller knob/slideer (To test whether the position is greater than the given value.)
Try the following:
deck active eq_low -1 & deck active volume -1 & deck default volume +1 & deck default eq_low 50% ? nothing : deck default eq_low +1
Try the following:
deck active eq_low -1 & deck active volume -1 & deck default volume +1 & deck default eq_low 50% ? nothing : deck default eq_low +1
Posté Fri 09 Jul 10 @ 12:38 pm
@Jp, I'm using a midi controller.(not trying to hijack the thread) but can I do what I asked? Have the bass return when I move the fader back to the active deck?? Unlike him I don't want the volume to lower just the bass. Hope this makes sense.......
Thanks for your time
Huey
Thanks for your time
Huey
Posté Fri 09 Jul 10 @ 12:43 pm
@Jp, I'm using a midi controller.(not trying to hijack the thread) but can I do what I asked? Have the bass return when I move the fader back to the active deck??
Thhanks for your time
Huey
Thhanks for your time
Huey
Posté Fri 09 Jul 10 @ 12:43 pm
jpboggis
Perfect... just not quite
ok I now have written this..(eq_crossfader_low is now included as I wanted to do this as well)
deck active eq_low -1 & deck active volume -1 & deck default volume +1 & deck default eq_low 50% ? nothing : deck default eq_low +1 & eq_crossfader_low +1%
funny that eq_crossfader_low will stop at 15.3%
however bellow is the get around:
eq_crossfader_low +1% & deck active eq_low -1 & deck active volume -1 & deck default volume +1 & deck default eq_low 50% ? nothing : deck default eq_low +1
sorted..
thanks all for the help...
Perfect... just not quite
ok I now have written this..(eq_crossfader_low is now included as I wanted to do this as well)
deck active eq_low -1 & deck active volume -1 & deck default volume +1 & deck default eq_low 50% ? nothing : deck default eq_low +1 & eq_crossfader_low +1%
funny that eq_crossfader_low will stop at 15.3%
however bellow is the get around:
eq_crossfader_low +1% & deck active eq_low -1 & deck active volume -1 & deck default volume +1 & deck default eq_low 50% ? nothing : deck default eq_low +1
sorted..
thanks all for the help...
Posté Sat 10 Jul 10 @ 1:07 am