In serato you can double tap the load button and instant double. How can I map this in virtual dj?
Posté Wed 14 Jun 17 @ 1:35 am
map a button on each deck to "clone_deck" and there u go :-)
Posté Wed 14 Jun 17 @ 2:14 am
Double-click-load-for-clone is actually one of the mapping examples on the scripting page on the wiki
So, it should be something like this:
var 'double' ? set 'double' 0 & repeat_stop 'myrep' & device_side 'left' ? deck left clone_deck right : deck right clone_deck left : set 'double' 1 & repeat_start 'myrep' 400ms 1 & load & set 'double' 0
You can change the 400ms to make the double click slower/faster
So, it should be something like this:
var 'double' ? set 'double' 0 & repeat_stop 'myrep' & device_side 'left' ? deck left clone_deck right : deck right clone_deck left : set 'double' 1 & repeat_start 'myrep' 400ms 1 & load & set 'double' 0
You can change the 400ms to make the double click slower/faster
Posté Wed 14 Jun 17 @ 5:24 am