Hi All,
I managed to re-map the kill switches from the hot cue setting, that wasn't too tricky.
I would like to change my stutter button (useless??) to a transform button. now i'm not sure if thats the correct term but basically if my track is playing on the right deck, i want to drop to the left deck for a beat, then straight back to the right deck. same as if you hold the right mouse button at the left side of the crossfader then when you let go it just springs back into place.
im sure you know what effect im talking about, i would like to know the vdj script for it.
thanks in advance :)
I managed to re-map the kill switches from the hot cue setting, that wasn't too tricky.
I would like to change my stutter button (useless??) to a transform button. now i'm not sure if thats the correct term but basically if my track is playing on the right deck, i want to drop to the left deck for a beat, then straight back to the right deck. same as if you hold the right mouse button at the left side of the crossfader then when you let go it just springs back into place.
im sure you know what effect im talking about, i would like to know the vdj script for it.
thanks in advance :)
Inviato Mon 27 Feb 12 @ 4:01 pm
SOLVED it!
Its simple, crossfader 0% and crossfader 100% gave me the effect i need. had to map it to two buttons instead of one toggle switch but it works.
Its simple, crossfader 0% and crossfader 100% gave me the effect i need. had to map it to two buttons instead of one toggle switch but it works.
Inviato Tue 28 Feb 12 @ 10:36 am
you need to seperate the controller sides using "device_side 'left' ?" first, then map it so the action happens only "while_pressed"
device_side 'left' ? crossfader 0% while_pressed : crossfader 100% while_pressed
or maybe map it like this if you want it to feel like you are crabbing..
device_side 'left' ? down ? crossfader 5% : crossfader 0% : down ? crossfader 95% : crossfader 100%
I thought you meant you wanted the trans effect that will cut in time with the bpm, that is only available to registered pro users, if you register you can download it.
TRANS v1.0
Author: Deun-Deun
device_side 'left' ? crossfader 0% while_pressed : crossfader 100% while_pressed
or maybe map it like this if you want it to feel like you are crabbing..
device_side 'left' ? down ? crossfader 5% : crossfader 0% : down ? crossfader 95% : crossfader 100%
I thought you meant you wanted the trans effect that will cut in time with the bpm, that is only available to registered pro users, if you register you can download it.
TRANS v1.0
Author: Deun-Deun
Inviato Tue 28 Feb 12 @ 1:03 pm
Sweet!
It was "device_side 'left' ? crossfader 0% while_pressed : crossfader 100% while_pressed" that did the trick for me.
Thanks.
It was "device_side 'left' ? crossfader 0% while_pressed : crossfader 100% while_pressed" that did the trick for me.
Thanks.
Inviato Tue 28 Feb 12 @ 1:20 pm