I would like to use the Jog wheels on my Denon DN-MC6000 to move the loop. Along with the regular scratching, loop-move would be available when the the J wheel is move while the shift button is held bown. What would be the mapping script I would need to to acomplish this? Thanks for your help.
Inviato Sat 05 Nov 11 @ 12:19 pm
something like this,
var 'shift' ? param_greater 0% ? loop_move +0.01 : loop_move -0.01 : touchwheel
or maybe have a look at the wheel_mode options, I think there is a loop_move one
var 'shift' ? param_greater 0% ? loop_move +0.01 : loop_move -0.01 : touchwheel
or maybe have a look at the wheel_mode options, I think there is a loop_move one
Inviato Sat 05 Nov 11 @ 1:46 pm
I can not get it to work. Where would i look to see the wheel-mode options? Please help. Thanks.
Inviato Sat 05 Nov 11 @ 11:30 pm
try this, it also depends what your shift is called for it to work
var 'shift' ? param_greater 50% ? loop_move +0.01 : loop_move -0.01 : touchwheel
to see what wheel modes are available type "wheel_mode" in the action box of the mapper or check the wiki it will be in the list of actions
var 'shift' ? param_greater 50% ? loop_move +0.01 : loop_move -0.01 : touchwheel
to see what wheel modes are available type "wheel_mode" in the action box of the mapper or check the wiki it will be in the list of actions
Inviato Sun 06 Nov 11 @ 1:02 am