Hello everyone
On a ddj RB :
1 - Is there a way to map a button to switch between fader vu-meter and master out vu-meter ?
2 - and for clone deck with double push on the load button as it is in rekordbox ?
Thanks for your help, and have a good day
Virtual DJ 8.2 3471- win 8.1- Ddj Rb - bedroom Dj
On a ddj RB :
1 - Is there a way to map a button to switch between fader vu-meter and master out vu-meter ?
2 - and for clone deck with double push on the load button as it is in rekordbox ?
Thanks for your help, and have a good day
Virtual DJ 8.2 3471- win 8.1- Ddj Rb - bedroom Dj
Inviato Thu 10 Nov 16 @ 4:19 am
2 look at the first entry here under flow
http://www.virtualdj.com/wiki/VDJ8script.html
http://www.virtualdj.com/wiki/VDJ8script.html
Inviato Thu 10 Nov 16 @ 6:42 am
Please excuse locodog. Seems a bit lazy lately :P
1) you need to map a button (on your controller , keyboard or a skin custom button) ..
Then the VU_METER on the DDJ-RB should be ,,
2.) Try this code to the LOAD button ..
1) you need to map a button (on your controller , keyboard or a skin custom button) ..
toggle '$vumeters'
Then the VU_METER on the DDJ-RB should be ,,
var '$vumeters' ? device_side 'left' ? deck master get_vu_meter_left : deck master get_vu_meter_right : get_level
2.) Try this code to the LOAD button ..
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
Inviato Thu 10 Nov 16 @ 11:43 am
Hello
I try the code :
For the vumeters it works very good
For the load button it dit not work
Any idea ?
Thanks
I try the code :
For the vumeters it works very good
For the load button it dit not work
Any idea ?
Thanks
Inviato Mon 14 Nov 16 @ 4:41 pm
Just tried and works fine here. When double-press the Load button, it clones the calling deck to the opposite one.
Unless you want to copy/clone the opposite deck to the calling one. In that case, you need to swap the clone decks in the action above.
Are you sure you are double-pressing the button fast enough ?
You could increase the 400ms time from the action above to a higher one, but it would slow-down the Loading action.
Unless you want to copy/clone the opposite deck to the calling one. In that case, you need to swap the clone decks in the action above.
var 'double' ? set 'double' 0 & repeat_stop 'myrep' & device_side 'left' ? deck right clone_deck left : deck left clone_deck right : set 'double' 1 & repeat_start 'myrep' 400ms 1 & load & set 'double' 0
Are you sure you are double-pressing the button fast enough ?
You could increase the 400ms time from the action above to a higher one, but it would slow-down the Loading action.
Inviato Mon 14 Nov 16 @ 5:07 pm
Other options without double-clicking:
This will clone the deck if you press the button for 1 second or more.
This action will clone the deck if a track is already loaded to the deck.
device_side 'left' ? holding 1000ms ? deck left clone_deck right : load : holding 1000ms ? deck right clone_deck left : load
This will clone the deck if you press the button for 1 second or more.
device_side 'left' ? loaded ? deck left clone_deck right : load : loaded ? deck right clone_deck left : load
This action will clone the deck if a track is already loaded to the deck.
Inviato Tue 15 Nov 16 @ 9:17 am
Sorry guys for the long wait, was not at home...
@djdad : i've restart from scratch and all is OK, I can clone my decks with double press
@ PatchN : I also tried your code with one second press ans it works too
Thank you guys for your help
@djdad : i've restart from scratch and all is OK, I can clone my decks with double press
@ PatchN : I also tried your code with one second press ans it works too
Thank you guys for your help
Inviato Mon 21 Nov 16 @ 3:36 pm