Hello all,
I did not found a mapping for the midi fighter from DjTechTools so I'm builing one myslef.
I already did some buttons with the learn command, but now I have a shift button to use that has to be kept active on press. How do I do that.
Secondly I would like to upper or lower the pitch with the use of 2 buttons, how can I do that, with auto learn it didn't go well.
Thank you,
I did not found a mapping for the midi fighter from DjTechTools so I'm builing one myslef.
I already did some buttons with the learn command, but now I have a shift button to use that has to be kept active on press. How do I do that.
Secondly I would like to upper or lower the pitch with the use of 2 buttons, how can I do that, with auto learn it didn't go well.
Thank you,
Mensajes Tue 28 Dec 10 @ 10:58 am
For your shift button, use the following:
set '$shift' while_pressed
Then for buttons that you wish to perform alternative actions, use the following:
var '$shift' ? action_for_shift : normal action
E.g:
var '$shift' ? delete_cue 1 : set_cue 1
To increase/decrease pitch, use the following:
pitch -0.1%
pitch +0.1%
(You can use greater or smaller values for more course/fine adjustments, e.g: 1% or 0.01%)
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
set '$shift' while_pressed
Then for buttons that you wish to perform alternative actions, use the following:
var '$shift' ? action_for_shift : normal action
E.g:
var '$shift' ? delete_cue 1 : set_cue 1
To increase/decrease pitch, use the following:
pitch -0.1%
pitch +0.1%
(You can use greater or smaller values for more course/fine adjustments, e.g: 1% or 0.01%)
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
Mensajes Thu 30 Dec 10 @ 6:13 am
[moved to own post]
Mensajes Fri 31 Dec 10 @ 6:25 am
I will try out those tips you gave me here. Did not have time to work on it.
Mensajes Tue 18 Jan 11 @ 6:36 am
redgoblin83 wrote :
I will try out those tips you gave me here. Did not have time to work on it.
I did succesfully mapped the pitch bend and also the pith plus or minus for the range, but I have to press multiple times on the button to make it grow in the given steps. Is it possible to make it grow until the button is released ?
Thank you
Mensajes Tue 18 Jan 11 @ 10:10 am
Sorry, this is not currently possible for MIDI or HID controllers.
Repeating is only possible for keyboard mappings (Because the keyboard of your computer does this itself automatically - MIDI controllers do not normally do this.)
Repeating is only possible for keyboard mappings (Because the keyboard of your computer does this itself automatically - MIDI controllers do not normally do this.)
Mensajes Tue 18 Jan 11 @ 5:56 pm