Hi,
I know there are pages of text relating to this but what I need I either haven’t found, or have failed to be able to properly understand.
I use a Launchpad primarily (with a Traktor Z1) when DJing and have script for basically everything I need except for using effects.
I would like to know exact script on being able to turn any effect on and off for both individual decks, as well as having the lights flash when in use, and stay steady lit when not in use.
For example press to apply echo to deck one, and then press it again to turn it off.
Also when for my "Play" button, I would like to know how to have it on steady colour green when the song is loaded, and flashing when the song is playing. I just can't work out how to do this currently. At the moment I think it flashes when playing, but the colour turns off if the song isn't playing.
Apologies if I'm being a bit dumb with it but genuinely trying my best.
Could anyone please please help me out with this? I’d be very grateful.
Thank you,
Luke
I know there are pages of text relating to this but what I need I either haven’t found, or have failed to be able to properly understand.
I use a Launchpad primarily (with a Traktor Z1) when DJing and have script for basically everything I need except for using effects.
I would like to know exact script on being able to turn any effect on and off for both individual decks, as well as having the lights flash when in use, and stay steady lit when not in use.
For example press to apply echo to deck one, and then press it again to turn it off.
Also when for my "Play" button, I would like to know how to have it on steady colour green when the song is loaded, and flashing when the song is playing. I just can't work out how to do this currently. At the moment I think it flashes when playing, but the colour turns off if the song isn't playing.
Apologies if I'm being a bit dumb with it but genuinely trying my best.
Could anyone please please help me out with this? I’d be very grateful.
Thank you,
Luke
Inviato Sun 25 Apr 21 @ 10:50 am
one button to toggle fx on both decks?
or
2 buttons, one for each deck
or
2 buttons, one for each deck
Inviato Sun 25 Apr 21 @ 11:08 am
Hi locodog,
I would like two buttons, one for each deck yeah thank you
I would like two buttons, one for each deck yeah thank you
Inviato Sun 25 Apr 21 @ 11:10 am
locodog wrote :
one button to toggle fx on both decks?
or
2 buttons, one for each deck
or
2 buttons, one for each deck
Hi locodog,
I would like two buttons, one for each deck yeah thank you
Inviato Sun 25 Apr 21 @ 11:10 am
simplified, of course you'll have to work it into the launchpad 'pages by variable' theme, if you want it to work that way
button
deck X effect_active "FXnAME"
led
deck X effect_active "FXnAME" ? blink ? color 'green' : off : color 'red'
button
deck X effect_active "FXnAME"
led
deck X effect_active "FXnAME" ? blink ? color 'green' : off : color 'red'
Inviato Sun 25 Apr 21 @ 11:34 am
locodog wrote :
simplified, of course you'll have to work it into the launchpad 'pages by variable' theme, if you want it to work that way
button
deck X effect_active "FXnAME"
led
deck X effect_active "FXnAME" ? blink ? color 'green' : off : color 'red'
button
deck X effect_active "FXnAME"
led
deck X effect_active "FXnAME" ? blink ? color 'green' : off : color 'red'
Hi mate,
after one quick go, that seems to work perfect, thank you!
Is there any way you could help me with the play button also?
i just want it to flash green when playing a song on deck 1, and show a steady non-flashing green when not playing, but the song is loaded in the deck.
Thank you so much
Inviato Sun 25 Apr 21 @ 12:14 pm
Piece it together
is it playing ? flash
deck X play ? blink ? color 'green' : off :
if it's not playing, is it loaded ? solid
deck x loaded ? color 'green' :
if neither, off
is it playing ? flash
deck X play ? blink ? color 'green' : off :
if it's not playing, is it loaded ? solid
deck x loaded ? color 'green' :
if neither, off
Inviato Sun 25 Apr 21 @ 12:25 pm
locodog wrote :
Piece it together
is it playing ? flash
deck X play ? blink ? color 'green' : off :
if it's not playing, is it loaded ? solid
deck x loaded ? color 'green' :
if neither, off
is it playing ? flash
deck X play ? blink ? color 'green' : off :
if it's not playing, is it loaded ? solid
deck x loaded ? color 'green' :
if neither, off
Amazing, you've been so helpful!
Thanks again
Inviato Sun 25 Apr 21 @ 12:36 pm