Hi all,
I'd like to enable the QUANTIZE feature ONINIT on the Pioneer DDJ-SX3.
I put quantize_all in the ONINIT script and it seems to work, but the problem is the Quantize button illumination state is now inverted. There is no LED_QUANTIZE in the mapping, so I'm not able to turn the LED on to match the state.
Is there any way to do this?
I'd like to enable the QUANTIZE feature ONINIT on the Pioneer DDJ-SX3.
I put quantize_all in the ONINIT script and it seems to work, but the problem is the Quantize button illumination state is now inverted. There is no LED_QUANTIZE in the mapping, so I'm not able to turn the LED on to match the state.
Is there any way to do this?
Posted Thu 06 Jun 24 @ 11:26 am
What you did works as intended.. kinda! (and that's why the LED is not working)
On the ONINIT key type & ( deck all quantize_all on )
Now restart VirtualDJ and it should work as expected.
On the ONINIT key type & ( deck all quantize_all on )
Now restart VirtualDJ and it should work as expected.
Posted Thu 06 Jun 24 @ 1:35 pm
Thank you! That did it!
Posted Thu 06 Jun 24 @ 3:49 pm
Strong suggestion, if using deck all in an oninit script, wrap it in ( )
I've seen deck all over used in long oninit scripts and it resulted in 1000's of branches.
To see what I mean test this on a custom button
set $proof 0 & var_list & deck all nothing & deck all nothing & set $proof +1
versus this
set $proof 0 & var_list & ( deck all nothing ) & ( deck all nothing ) & set $proof +1
I've seen deck all over used in long oninit scripts and it resulted in 1000's of branches.
To see what I mean test this on a custom button
set $proof 0 & var_list & deck all nothing & deck all nothing & set $proof +1
versus this
set $proof 0 & var_list & ( deck all nothing ) & ( deck all nothing ) & set $proof +1
Posted Thu 06 Jun 24 @ 4:18 pm
Thanks Locodog, that's good advice.
Posted Thu 06 Jun 24 @ 9:15 pm