I have a Xone 2D and I would like to map the Jog wheel to scratch I was able to make it work with the scratch_wheel -1.0 but it only goes backwards before I invest in this product I would like to know it works both ways also I noticed I can only go one way with the loop move -5%
how do I make that go both ways with one knob as well thanks
Tony
how do I make that go both ways with one knob as well thanks
Tony
geposted Mon 12 Apr 10 @ 9:11 am
djtonybe wrote :
scratch_wheel -1.0 +1.0 does not work?
Your mapping is incorrect. First of all scratch_wheel is depreciated.
The correct mapping is:
param_greater 50% ? jogwheel +0.1% : jogwheel -0.1%
Or for a touch-sensitive jogwheel:
param_greater 50% ? touchwheel +0.1% : touchwheel -0.1%
Please see http://www.virtualdj.com/wiki/VDJScript%20Examples.html - There are details there on how to map a jogwheel with Simple MIDI Wrapper correctly (Scroll down this page to find it) as well as lots of other common examples.
djtonybe wrote :
Here is another thing I tried to make the loop shift go back and forth and can only go in one direction what is the string to make it go both ways? I used loop_move -5% is there something else to make it go+5% too or do I need to use 2 dials?
Same as above using param_greater, i.e:
param_greater 50% ? loop_move +5% : loop_move -5%
geposted Mon 12 Apr 10 @ 12:20 pm
Sweet!!! Works Like a Charm!!! Now I can buy this and feel guilty later 8)
geposted Mon 12 Apr 10 @ 8:00 pm