Accesso rapido:  

Forum: General Discussion

Topic: Crossfader mpping

Questo argomento è obsoleto e potrebbe contenere informazioni obsolete o errate.

I want to have my crossfader set to full curve by default. I'd like to be able to push the "hot cue 3" button and have it change the crossfader to "scratch" . I also want it to go back to the default of "full", if I push it again to shut it off. I'd like to assign this to only the hot cue on the right side deck.

I've tried a couple different mappings, but can only get it to change to scratch, but not back to full. I can only get it to assign it to both sides, which is not what I want.

Any help would be appreciated!
 

Inviato Fri 16 Oct 20 @ 12:30 pm
NicotuxHome userMember since 2014
crossfader_curve returns a "code" for curve, not name (bug ?)
anyway
0.33 is code for smooth
0.5 is code for full
0.99 for scratch
-1 for cut
-2 for custom

crossfader_curve 0.5 ? crossfader_curve "Scratch" : crossfader_curve "Full"

if you want it only one side
use device_side or leftdeck or right deck depending on where you map the script

i.e.:
rightdeck ? crossfader_curve 0.5 ? crossfader_curve "Scratch" : crossfader_curve "Full" : <what you want for leftdeck>
 

Inviato Fri 16 Oct 20 @ 1:27 pm
Nicotux wrote :
crossfader_curve returns a "code" for curve, not name (bug ?)
anyway
0.33 is code for smooth
0.5 is code for full
0.99 for scratch
-1 for cut
-2 for custom

crossfader_curve 0.5 ? crossfader_curve "Scratch" : crossfader_curve "Full"

if you want it only one side
use device_side or leftdeck or right deck depending on where you map the script

i.e.:
rightdeck ? crossfader_curve 0.5 ? crossfader_curve "Scratch" : crossfader_curve "Full" : <what you want for leftdeck>


Thank you! Works the way I want it.
 

Inviato Fri 16 Oct 20 @ 3:40 pm


(Vecchi argomenti e forum sono automaticamente chiusi)