Hi there.
I have 2 CDJ400's linked via HID to VDJ 6. I want to be able to control the effect parameters one and two via the jogwheel, when i press text mode (param. 1) or call (param. 2)
My mapping is as follows:
Text Mode: set "effect" 1 while_pressed & show text "Param 1"
Call: set "effect2" 1 while_pressed & show text "Param 2"
Jogwheel: var_equal "effect" 1 ? effect slider 1 : jogwheel & var_equal "effect2" 1 ? effect slider 2 : jogwheel
Its almost works! When i press the buttons i can control the parameters, the only problem is that when i press call in order to adjust param. 2, the movements both affect param. 2 AND the music, meaning it works as effet slider 2 and jogwheel at the same time...
Any idea what needs to be changed in order to make the jogwheel only affect effect slider 2 when call is pressed?
/Janzeh
I have 2 CDJ400's linked via HID to VDJ 6. I want to be able to control the effect parameters one and two via the jogwheel, when i press text mode (param. 1) or call (param. 2)
My mapping is as follows:
Text Mode: set "effect" 1 while_pressed & show text "Param 1"
Call: set "effect2" 1 while_pressed & show text "Param 2"
Jogwheel: var_equal "effect" 1 ? effect slider 1 : jogwheel & var_equal "effect2" 1 ? effect slider 2 : jogwheel
Its almost works! When i press the buttons i can control the parameters, the only problem is that when i press call in order to adjust param. 2, the movements both affect param. 2 AND the music, meaning it works as effet slider 2 and jogwheel at the same time...
Any idea what needs to be changed in order to make the jogwheel only affect effect slider 2 when call is pressed?
/Janzeh
Posted Mon 12 Apr 10 @ 10:04 am
You have an error in your mapping:
Jogwheel: var_equal "effect" 1 ? effect slider 1 : jogwheel & var_equal "effect2" 1 ? effect slider 2 : jogwheel
Change it to the following:
Jogwheel: var "effect" ? effect slider 1 : var "effect2" ? effect slider 2 : jogwheel
Jogwheel: var_equal "effect" 1 ? effect slider 1 : jogwheel & var_equal "effect2" 1 ? effect slider 2 : jogwheel
Change it to the following:
Jogwheel: var "effect" ? effect slider 1 : var "effect2" ? effect slider 2 : jogwheel
Posted Mon 12 Apr 10 @ 12:25 pm
Oh, perfect, i wasn't aware that you could combine variables like that.
Thanks a lot!
Thanks a lot!
Posted Mon 12 Apr 10 @ 12:34 pm