Hi there.
I'm trying to use one of the 4 faders on each side to control the loop length with.
I've succesfuly did it with one as a pitch control.
Mapper.xml lines:
<map value="pitch_1" action="param_invert & deck 1 pitch_slider" />
<map value="looprange_1" action="deck 1 loop_length" />
Definition.xml lines:
<slider cc="0x12" name="pitch_1" deck="1"/>
<slider cc="0x13" name="looprange_1" deck="1"/>
My problem is this, when switching the notes number around I know i got the right faders, but in no of the situations the loop lenght works correctly.
I wanted to make i change as if I was hitting the loop double/half buttons.
But it only cut down the loop below 4 beats?
I'm using vers. 6.something trial, so it's not because of the restrictions in vers. 7 home edition.
What am I missing or doing wrong ??
I'm trying to use one of the 4 faders on each side to control the loop length with.
I've succesfuly did it with one as a pitch control.
Mapper.xml lines:
<map value="pitch_1" action="param_invert & deck 1 pitch_slider" />
<map value="looprange_1" action="deck 1 loop_length" />
Definition.xml lines:
<slider cc="0x12" name="pitch_1" deck="1"/>
<slider cc="0x13" name="looprange_1" deck="1"/>
My problem is this, when switching the notes number around I know i got the right faders, but in no of the situations the loop lenght works correctly.
I wanted to make i change as if I was hitting the loop double/half buttons.
But it only cut down the loop below 4 beats?
I'm using vers. 6.something trial, so it's not because of the restrictions in vers. 7 home edition.
What am I missing or doing wrong ??
发表时间 Thu 11 Nov 10 @ 10:32 am
Try the following:
For further information on VDJscript, including examples of common mappings, please see:
http://www.virtualdj.com/wiki/VDJscript.html
http://www.virtualdj.com/wiki/VDJScript%20Examples.html
http://www.virtualdj.com/wiki/VDJscript_verbs.html
loop ? param_smaller 12% ? loop 0.125 ? nothing : loop 0.125 : param_smaller 24% ? loop 0.25 ? nothing : loop 0.25 : param_smaller 36% ? loop 0.5 ? nothing : loop 0.5 : param_smaller 48% ? loop 1 ? nothing : loop 1 : param_smaller 60% ? loop 2 ? nothing : loop 2 : param_smaller 72% ? loop 4 ? nothing : loop 4 : param_smaller 84% ? loop 8 ? nothing : loop 8 : loop 16 ? nothing : loop 16 : nothing
For further information on VDJscript, including examples of common mappings, please see:
http://www.virtualdj.com/wiki/VDJscript.html
http://www.virtualdj.com/wiki/VDJScript%20Examples.html
http://www.virtualdj.com/wiki/VDJscript_verbs.html
发表时间 Thu 11 Nov 10 @ 12:41 pm