Hey guys,
I'm trying to remap some buttons on my DJ2GO to work with a 4 deck.
I was thinking about using the PLF as a SHIFT button and when ever I do SHIFT SYNC on the left side, it would change to the other left deck, and same with the right SHIFT SYNC.
Although, is it just me or the DJ2GO, the maps are hardcored to only work on Deck 1 & Deck 2?
If anyone can get this working and wouldn't mind sharing their mapper, I'd really appreciate it :)
I tried: http://www.virtualdj.com/wiki/Control%204%20decks%20with%20a%202%20deck%20controller.html without any luck.
The new deck gets selected, but when ever i press play to start the 3 or 4th deck, it stops the 1 or 2 deck depending on which play button i press.
I use the following code on a button on my DMC2 and it works like a charm, but I don't understand why its not working on the DJ2GO.
Thanks,
Pat
I'm trying to remap some buttons on my DJ2GO to work with a 4 deck.
I was thinking about using the PLF as a SHIFT button and when ever I do SHIFT SYNC on the left side, it would change to the other left deck, and same with the right SHIFT SYNC.
Although, is it just me or the DJ2GO, the maps are hardcored to only work on Deck 1 & Deck 2?
If anyone can get this working and wouldn't mind sharing their mapper, I'd really appreciate it :)
I tried: http://www.virtualdj.com/wiki/Control%204%20decks%20with%20a%202%20deck%20controller.html without any luck.
The new deck gets selected, but when ever i press play to start the 3 or 4th deck, it stops the 1 or 2 deck depending on which play button i press.
I use the following code on a button on my DMC2 and it works like a charm, but I don't understand why its not working on the DJ2GO.
device_side 'left' ? deck 1 leftdeck ? deck 3 leftdeck : on & deck 1 leftdeck : deck 2 rightdeck ? deck 4 rightdeck : on & deck 2 rightdeck
Thanks,
Pat
Mensajes Fri 13 Apr 12 @ 10:20 pm
Go to CONFIG -> Mappers and make sure that it is assigned to left/right deck.
(Choose the DJ2GO in the drop-down list, click the button to the right of the drop-down list and choose Deck Assignment.)
(Choose the DJ2GO in the drop-down list, click the button to the right of the drop-down list and choose Deck Assignment.)
Mensajes Sat 14 Apr 12 @ 2:05 pm
Thanks a lot. That just did it :)
Appreciate the help :)
Wish i would've seen that before.
Appreciate the help :)
Wish i would've seen that before.
Mensajes Sat 14 Apr 12 @ 9:13 pm
I would like to Map the A Volume knob to Select_video_fx 'effect' Video_FX_Slider 1 and B Volume knob to Select_video_fx 'effect' Video_fx_Slider 1
If i map A Volume first and then test it works fine. but i cant map B Volume.
I am not able to map the right side differently to the left. Is there a way of being able to map each side?
I would like to use the DJ2GO with my Denon DN-HC4500. Denon controller works fine for normal djing and would like the DJ2GO to control the Visual side of things. Any ideas?
If i map A Volume first and then test it works fine. but i cant map B Volume.
I am not able to map the right side differently to the left. Is there a way of being able to map each side?
I would like to use the DJ2GO with my Denon DN-HC4500. Denon controller works fine for normal djing and would like the DJ2GO to control the Visual side of things. Any ideas?
Mensajes Wed 09 May 12 @ 1:50 pm
you can't map them independantly as they are defined as a pair of controls in the definition file, but you can seperate them in the same script using
device_side 'left' ? action for left side : action for right side
so for your example it's
device_side 'left' ? deck left video_fx_select 'effect1' & deck left Video_FX_Slider 1 : deck right video_fx_select 'effect2' & deck right Video_fx_Slider 1
just make sure you rename the video fx a specific name, also you can leave that part out if you want to change the selected video fx
device_side 'left' ? deck left Video_FX_Slider 1 : deck right Video_fx_Slider 1
device_side 'left' ? action for left side : action for right side
so for your example it's
device_side 'left' ? deck left video_fx_select 'effect1' & deck left Video_FX_Slider 1 : deck right video_fx_select 'effect2' & deck right Video_fx_Slider 1
just make sure you rename the video fx a specific name, also you can leave that part out if you want to change the selected video fx
device_side 'left' ? deck left Video_FX_Slider 1 : deck right Video_fx_Slider 1
Mensajes Wed 09 May 12 @ 2:37 pm