Unfortunately it's not currently possible to detect the direction a knob is being turned in.
At the moment, it's best to either use an endless encoder, two buttons or the jogwheel.
E.g: If your controller has << >> search buttons, you could change the button mappings to:
<< = loop ? loop_half : seek -2
>> = loop ? loop_double : seek +2
Or map the jogwheel to adjust loop when a loop is active. See http://www.virtualdj.com/wiki/VDJScript%20Examples.html
At the moment, it's best to either use an endless encoder, two buttons or the jogwheel.
E.g: If your controller has << >> search buttons, you could change the button mappings to:
<< = loop ? loop_half : seek -2
>> = loop ? loop_double : seek +2
Or map the jogwheel to adjust loop when a loop is active. See http://www.virtualdj.com/wiki/VDJScript%20Examples.html
Inviato Tue 16 Mar 10 @ 6:22 pm
This works:
param_greater 0 ? loop_move +10ms : loop_move -10ms
param_greater 0 ? loop_move +10ms : loop_move -10ms
Inviato Fri 26 Mar 10 @ 12:56 pm
Another option is to assign a button to the following, which will toggle the jogwheel in v6 between adjusting loop in, out and moving the loop.
wheel_mode "loop_in,loop_out,loop_move,jog"
You can omit any options you don't want, e.g:
wheel_Mode "loop_out,jog"
wheel_mode "loop_in,loop_out,loop_move,jog"
You can omit any options you don't want, e.g:
wheel_Mode "loop_out,jog"
Inviato Fri 26 Mar 10 @ 1:46 pm
I made a new one for the people that like going past 1/16th and like making a nasty buildup!
loop ? param_greater 0% ? cycle %jog -9 & var %jog ? nothing : loop 99% 1 : cycle %jog 25 & var %jog ? nothing : loop 105% : touchwheel
working on a mix track pro!
loop ? param_greater 0% ? cycle %jog -9 & var %jog ? nothing : loop 99% 1 : cycle %jog 25 & var %jog ? nothing : loop 105% : touchwheel
working on a mix track pro!
Inviato Tue 13 Dec 11 @ 3:33 pm