Ingresar:     


Forum: General Discussion

Tópico: Using The Sampler On My DENON MC6000

Este tópico es antiguo y puede contener información incorrecta para la nueva versión.

When I'm looking at my row of 12 samples... How can I assign each one on the fly to one of the four sample buttons on the deck I am using?

Right now my CUE1 CUE2 CUE3 CUE4 buttons play the first four samples in my sampler.

But, let's say I want to assign the 12th sample in my sampler to CUE1 really quickly... How would I do that?

I'm looking for a way to quickly "drag and drop" my 12 samples to my four CUE buttons when I want and in the order I want.

Thanks,
Anthony
 

Mensajes Sun 29 Jan 12 @ 6:21 pm
not followng exactly what you are asking for...

did you want the cue button to play a sample from the sampler under a shift, then be able to change the sample slot the button plays on the fly?

button to change whether the cue will play a sample or hot cue (if sampler mode the led will blink), if you hold your normal shift button and press it, it will change the slot the cue button will play

var 'shift' ? set 'samp_change_cue_slot' while_pressed : set 'cue_change' 1 while_pressed

led for cue buttons
var 'cue_1_samp_play' 1 ? sampler 1 play ? blink 300ms : blink :
var 'cue_1_samp_play' 2 ? sampler 2 play ? blink 300ms : blink :
var 'cue_1_samp_play' 3 ? sampler 3 play ? blink 300ms : blink :
var 'cue_1_samp_play' 4 ? sampler 4 play ? blink 300ms : blink :
var 'cue_1_samp_play' 5 ? sampler 5 play ? blink 300ms : blink :
var 'cue_1_samp_play' 6 ? sampler 6 play ? blink 300ms : blink :
var 'cue_1_samp_play' 7 ? sampler 7 play ? blink 300ms : blink :
var 'cue_1_samp_play' 8 ? sampler 8 play ? blink 300ms : blink :
var 'cue_1_samp_play' 9 ? sampler 9 play ? blink 300ms : blink :
var 'cue_1_samp_play' 10 ? sampler 10 play ? blink 300ms : blink :
var 'cue_1_samp_play' 11 ? sampler 11 play ? blink 300ms : blink :
var 'cue_1_samp_play' 12 ? sampler 12 play ? blink 300ms : blink :
hot_cue 1 ? on : off

for the cue buttons
var 'cue_change' 1 ? toggle 'cue_1_samp_play' :
var 'samp_change_cue_slot' ?
sampler 1 select ? set 'cue_1_play_samp' 1 :
sampler 2 select ? set 'cue_1_play_samp' 2 :
sampler 3 select ? set 'cue_1_play_samp' 3 :
sampler 4 select ? set 'cue_1_play_samp' 4 :
sampler 5 select ? set 'cue_1_play_samp' 5 :
sampler 6 select ? set 'cue_1_play_samp' 6 :
sampler 7 select ? set 'cue_1_play_samp' 7 :
sampler 8 select ? set 'cue_1_play_samp' 8 :
sampler 9 select ? set 'cue_1_play_samp' 9 :
sampler 10 select ? set 'cue_1_play_samp' 10 :
sampler 11 select ? set 'cue_1_play_samp' 11 :
sampler 12 select ? set 'cue_1_play_samp' 12 : nothing :
var 'cue_1_samp_play' 1 ?
var 'cue_1_play_samp' 1 : sampler 1 play_stop :
var 'cue_1_play_samp' 2 : sampler 2 play_stop :
var 'cue_1_play_samp' 3 : sampler 3 play_stop :
var 'cue_1_play_samp' 4 : sampler 4 play_stop :
var 'cue_1_play_samp' 5 : sampler 5 play_stop :
var 'cue_1_play_samp' 6 : sampler 6 play_stop :
var 'cue_1_play_samp' 7 : sampler 7 play_stop :
var 'cue_1_play_samp' 8 : sampler 8 play_stop :
var 'cue_1_play_samp' 9 : sampler 9 play_stop :
var 'cue_1_play_samp' 10 : sampler 10 play_stop :
var 'cue_1_play_samp' 11 : sampler 11 play_stop :
var 'cue_1_play_samp' 12 : sampler 12 play_stop : nothing :
hot_cue 1

the only thing you need to do is change the red number to the corresponding cue button number, then delete all the spaces between the lines, so it is one big connected script

or did you want to record the cue points from a track directly into the sampler?
 

synthet1c wrote :
not followng exactly what you are asking for...

did you want the cue button to play a sample from the sampler under a shift, then be able to change the sample slot the button plays on the fly?



Ok... so I have my CUE1,2,3, & 4 buttons which I use for whatever track I am playing.
I then hit the SAMP. button which changes the CUE buttons to sampler buttons.

Now, whatever the first four samples are in my sample folder below are then engaged by the four CUE buttons.

But, if I want to play samples #5 - #12, I have to use the mouse and click on th screen.

I'd like to be able to change the order of the 12 samples quickly so that at any time I can place the four I want to use in the first four slots.
OR
Keep my 12 samples where they are and be able to assign each one to whatever CUE/Sample button I want.

Thanks for the help.
 

cool, that will do it then, the post timed out, so I cant change it unfortunately...

with the sampler cue button activation, press the button and the cue button together to change it's behaviour
 

You could always change the default VDJ script to include other samples. Ex.
this is what you have now..

var '$samp' ? sampler 1 play_stutter & sampler 1 select : var '$shift' ? sampler 1 play_stutter & sampler 1 select : sampler 1 play_stop & sampler 1 select

If you want you can just change the code to something like this

var '$samp' ? sampler 1 play_stutter & sampler 1 select : var '$shift' ? sampler 5 play_stutter : sampler 1 play_stop & sampler 1 select

this will play the 5th sample while the shift is pressed.
 

Also you probably know this already but samples can be played using the F keys as well. ex. F6 will play the 6th sample
 



(Los tópicos y foros antiguos son automáticamente cerrados)