I want to configure my knob EFX4 on the MC6000 mk1 to select one of three different slots of the beat grid effect.
So to summarize:
Knob position 0-33% = slot 1
Knob position 34-66% = slot 2
Knob position 67-100% = slot 3
How does the script look like to do this?
So to summarize:
Knob position 0-33% = slot 1
Knob position 34-66% = slot 2
Knob position 67-100% = slot 3
How does the script look like to do this?
Mensajes Sat 16 Apr 16 @ 6:23 pm
http://www.virtualdj.com/forums/207991/General_Discussion/Script_for_Beat_Grid_needed_please.html?search=slots&page=1
Check this thread and your script will query the dial something like this,
Param smaller 34% ? Call slot 1 : Param smaller 67% call slot 2 : call slot 3
Check this thread and your script will query the dial something like this,
Param smaller 34% ? Call slot 1 : Param smaller 67% call slot 2 : call slot 3
Mensajes Sat 16 Apr 16 @ 8:39 pm
Thanks Loco,
I got it to work with the following script:
param_smaller 0.286 ? effect slider 'beat grid' 1 0% : param_smaller 0.715 ? effect slider 'beat grid' 1 50% : effect slider 'beat grid' 1 100%
I got it to work with the following script:
param_smaller 0.286 ? effect slider 'beat grid' 1 0% : param_smaller 0.715 ? effect slider 'beat grid' 1 50% : effect slider 'beat grid' 1 100%
Mensajes Sun 17 Apr 16 @ 3:13 pm