I have 2 questions on VDJ script:
-I want to assign a sampler mute for to the keyboard. I mapped a key to the sampler mute, however you have to click to mute and click to unmute. How can I make this action to mute while pressed and audible when not pressed?
-I have a ddj-sx2 and want to add to the auto loop button. When engaging the auto loop I want the loop to be a 4 count loop. Currently It engages it at whatever loop count is currently in VDJ. What additional script do I need to add to set the loop length?
thanks in advance!
-I want to assign a sampler mute for to the keyboard. I mapped a key to the sampler mute, however you have to click to mute and click to unmute. How can I make this action to mute while pressed and audible when not pressed?
-I have a ddj-sx2 and want to add to the auto loop button. When engaging the auto loop I want the loop to be a 4 count loop. Currently It engages it at whatever loop count is currently in VDJ. What additional script do I need to add to set the loop length?
thanks in advance!
发表时间 Fri 09 Sep 16 @ 2:20 pm
mute while_pressed
while pressed works with most scripts but has limits when combined with [I think its with holding and or maybe down,]
loop [x] x being the desired length
loop 4
loop 32
loop 0.25
Although the pads can do this too
while pressed works with most scripts but has limits when combined with [I think its with holding and or maybe down,]
loop [x] x being the desired length
loop 4
loop 32
loop 0.25
Although the pads can do this too
发表时间 Fri 09 Sep 16 @ 4:17 pm
For the loop button I would suggest the following script:
loop ? loop : loop 4
So basically it will exit a loop (no matter it's size) if a loop is running, or it will create a 4 beat loop if a loop is not running.
loop ? loop : loop 4
So basically it will exit a loop (no matter it's size) if a loop is running, or it will create a 4 beat loop if a loop is not running.
发表时间 Fri 09 Sep 16 @ 5:11 pm
ill give it a shot. thanks to you both!
发表时间 Fri 09 Sep 16 @ 6:18 pm