快速登录:  

Forum: General Discussion

话题: Crossfader mpping

由于该帖子已年深日久,可能包含陈旧过时或描述错误的信息。

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!
 

发表时间 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>
 

发表时间 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.
 

发表时间 Fri 16 Oct 20 @ 3:40 pm


(陈旧帖子或论坛版块会自动关闭)