i have the stanton scs1 system and im having a hard time to map the cue buttons to my liking. i want the trigger to "cue" when the deck is paused and "hot_cue" when the deck is playing (like traktor)
my current mapping -----> var cue_mode 0 ? var cue_group1_2 0 ? hot_cue 1 : hot_cue 5
thx :)
my current mapping -----> var cue_mode 0 ? var cue_group1_2 0 ? hot_cue 1 : hot_cue 5
thx :)
Mensajes Sun 22 Apr 12 @ 1:04 am
this should do what you described... but i have never really used hot cues in traktor
play ? hot_cue 1 : goto_cue
this is how you would have it in your current script
var cue_mode 0 ? var cue_group1_2 0 ? play ? hot_cue 1 : goto_cue 1 : play ? hot_cue 5 : goto_cue 5
I have a feeling you mean to say "set the cue when paused and hot cue when playing, that is done like this....
var cue_mode 0 ? var cue_group1_2 0 ? play ? hot_cue 1 : set_cue 1 : play ? hot_cue 5 : set_cue 5
play ? hot_cue 1 : goto_cue
this is how you would have it in your current script
var cue_mode 0 ? var cue_group1_2 0 ? play ? hot_cue 1 : goto_cue 1 : play ? hot_cue 5 : goto_cue 5
I have a feeling you mean to say "set the cue when paused and hot cue when playing, that is done like this....
var cue_mode 0 ? var cue_group1_2 0 ? play ? hot_cue 1 : set_cue 1 : play ? hot_cue 5 : set_cue 5
Mensajes Sun 22 Apr 12 @ 1:44 am