I've been trying to map my Numark Total Control to control 4 volume faders in VDJ. My aim is to map:
pitch fader left = volume deck 1,
volume fader left = volume deck 2
volume fader right = volume deck 3
pitch fader right = volume deck 4
I have been playing around for hours trying to work out how to do this with VDJscript trying various things, thinking I'km almost there and then totally messing it all up.
I really have no clue how to do it.
Does anyone know if this is at all possible or do i need to give up with this?
Thanks
pitch fader left = volume deck 1,
volume fader left = volume deck 2
volume fader right = volume deck 3
pitch fader right = volume deck 4
I have been playing around for hours trying to work out how to do this with VDJscript trying various things, thinking I'km almost there and then totally messing it all up.
I really have no clue how to do it.
Does anyone know if this is at all possible or do i need to give up with this?
Thanks
发表时间 Fri 03 Jun 11 @ 9:58 am
If you want to do that it needs to be scripted like... deck 1 volume
but you can use the (EDIT whoops) device_side left/right code to change which deck your total control err controls :)
http://www.virtualdj.com/forums/135723/Hardware_Technical_Support/Advanced_Mapping_Verbs_Swap_Decks.html
but you can use the (EDIT whoops) device_side left/right code to change which deck your total control err controls :)
http://www.virtualdj.com/forums/135723/Hardware_Technical_Support/Advanced_Mapping_Verbs_Swap_Decks.html
发表时间 Fri 03 Jun 11 @ 10:13 am
Map the pitch slider (PITCH) to the following:
device_side 'left' ? deck 1 volume_slider : deck 4 volume_slider
Because pitch sliders are often inverted, you may need to use the following instead of the above:
device_side 'left' ? param_invert & deck 1 volume_slider : param_invert & deck 4 volume_slider
Match the volume slider (VOLUME) to the following:
device_side 'left' ? deck 2 volume_slider : deck 3 volume_slider
device_side 'left' ? deck 1 volume_slider : deck 4 volume_slider
Because pitch sliders are often inverted, you may need to use the following instead of the above:
device_side 'left' ? param_invert & deck 1 volume_slider : param_invert & deck 4 volume_slider
Match the volume slider (VOLUME) to the following:
device_side 'left' ? deck 2 volume_slider : deck 3 volume_slider
发表时间 Fri 03 Jun 11 @ 10:18 am
Thanks a lot guys, that has done the trick for now.
Going to map a few other functions now, but hopefully it will be ok, I think I've got the idea (famous last words).
Cheers
Going to map a few other functions now, but hopefully it will be ok, I think I've got the idea (famous last words).
Cheers
发表时间 Fri 03 Jun 11 @ 10:32 am
Im having Difficulty Customizing the mappers
example effect select and eq kill high etc....
any help would be greatly appreciated
example effect select and eq kill high etc....
any help would be greatly appreciated
发表时间 Fri 03 Jun 11 @ 12:12 pm
You should start your own topic and say what you want to map it to eg, knob, button etc...
发表时间 Fri 03 Jun 11 @ 12:34 pm