How do i get the "level/gain icon" to shift down/decrease volume of active deck by using a shortcut
Posté Fri 30 Nov 18 @ 2:50 am
I alter the gain by putting the curser on the left or right gain knob, then left click and hold down If you then move the cursor up you will see the gain increase, move the cursor down you will see it decrease. Is that what you meant ?
Posté Fri 30 Nov 18 @ 9:55 am
Thank you for your response but I actually need a shortcut meaning a key that I can press and it alternates the gain without me having to use the mouse to click on it. So basically I want to know what mapping (word or phrase) I should set for example Key G
Posté Fri 30 Nov 18 @ 11:34 am
You then probably mean level/volume and not gain?
That is simply:
Level -5%
You can use another pct if you like
Level +5% brings the volume back up again
That is simply:
Level -5%
You can use another pct if you like
Level +5% brings the volume back up again
Posté Fri 30 Nov 18 @ 12:36 pm
Thank u much Klaus, It worked. The only hiccup is I am not getting that one key to bring it down and when I release the key deliver goes back up. I didn't want to have to set two keys, one to bring it down and one to bring it back up
Posté Fri 30 Nov 18 @ 12:41 pm
K PHRESSH wrote :
Thank u much Klaus, It worked. The only hiccup is I am not getting that one key to bring it down and when I release the key deliver goes back up. I didn't want to have to set two keys, one to bring it down and one to bring it back up
If you just want it to jump to 0 when you press the key, and then jump back to whatever it was before when you release the key, then you can map:
level 0% while_pressed
Posté Fri 30 Nov 18 @ 3:40 pm
WORKED! THANK YOU VERY MUCH KLAUS, U R A GENIUS, RESPECT MON
Posté Fri 30 Nov 18 @ 4:11 pm
Hi there klausmogensen, do you have a medium where i can contact you directly? i don't see anywhere on your account to address you directly.
Posté Wed 30 Jan 19 @ 9:57 am
You can't contact other users directly as you are a non-licensed user.
Posté Wed 30 Jan 19 @ 10:02 am
K PHRESSH wrote :
Hi there klausmogensen, do you have a medium where i can contact you directly? i don't see anywhere on your account to address you directly.
There is really no need to contact me directly. Simply post here or in the facebook group - I'm pretty sure I'll spot it in both places
Also note that while I do know a few things about Virtual DJ I'm by no means the best at it.
There are several users, and of course the developers, that know way more about the software than I do.
So if you ask out in the open you'll get better help
Posté Wed 30 Jan 19 @ 10:30 am
OK THANK YOU,.
Posté Wed 30 Jan 19 @ 3:37 pm
OK THANK YOU,.
Posté Wed 30 Jan 19 @ 3:57 pm
To lower or raise a slider with a keyboard key use this script:
F: doubleclick ? filter +1% : filter +5%
SHIFT+F: doubleclick ? filter +1% : filter +5%
at short presses goes down or rises faster than leaving the button pressed
the button of a keyboard does not work like a controller ... they are continuous pulsations.
F: doubleclick ? filter +1% : filter +5%
SHIFT+F: doubleclick ? filter +1% : filter +5%
at short presses goes down or rises faster than leaving the button pressed
the button of a keyboard does not work like a controller ... they are continuous pulsations.
Posté Thu 31 Jan 19 @ 1:24 pm
@MrJacky
You can change the keyboard behaviour with windows control panel
http://www.virtualdj.com/user/locodog/blogs/5251/Filter_Keys__(Making_keyboard_keys_work_like_HW_buttons).html
You can change the keyboard behaviour with windows control panel
http://www.virtualdj.com/user/locodog/blogs/5251/Filter_Keys__(Making_keyboard_keys_work_like_HW_buttons).html
Posté Thu 31 Jan 19 @ 1:30 pm
oh!
thanks locodog, I did not know
disable the recognition in the windows pane so that the window does not appear every X consecutive presses
I didnot do that
I'm going to check if he still blocks SHIFT by pressing SHIFT + CTRL-SHIFT and I'll tell you.
thanks locodog, I did not know
disable the recognition in the windows pane so that the window does not appear every X consecutive presses
I didnot do that
I'm going to check if he still blocks SHIFT by pressing SHIFT + CTRL-SHIFT and I'll tell you.
Posté Thu 31 Jan 19 @ 2:16 pm
This can be very useful to configure another while pressing another than SHIFT, CTRL and ALT and the pad management
but with that configuration script it does not work :(
It really works, but it does not lower the volume automatically if I keep pressing ... I do not know if it compensates me to use samples in hold mode
but with that configuration script it does not work :(
It really works, but it does not lower the volume automatically if I keep pressing ... I do not know if it compensates me to use samples in hold mode
Posté Thu 31 Jan 19 @ 2:48 pm
start scripts with repeat Xms
Posté Thu 31 Jan 19 @ 3:04 pm
I changed it for:
up ? repeat_stop 'low' : eq_low +1% & repeat_start_instant 'low' 50ms & eq_low +1%
up ? repeat_stop 'low' : eq_low +1% & repeat_start_instant 'low' 50ms & eq_low +1%
Posté Thu 31 Jan 19 @ 4:49 pm
That will do it but this is simpler :-)
repeat 50ms & eq_low +1%
repeat 50ms & eq_low +1%
Posté Fri 01 Feb 19 @ 1:42 am
you're right in that it's easier
My script is tentative and is more complex in my mappin.
for example ... I like to use the "tactile" mask that comes by default (slightly modified) and the F, G, H, L and M keys (filter, gain, high, medium and low) automatically change the panel to "bottom_eq"
But they are in the "bottom_fx" panel, they become the slider of the effect. Everything is a matter of imagination!
My idea is to be able to do it at different speeds.
For example, when it is administered only once, it will slide by 5% and will be pressed quickly, such as double-clicking on only 1%.
In fact, I like more to program buttons or scripts, instead of playing live ... I'm quite clumsy with my fingers and I always end up pressing buttons that I should not.
My script is tentative and is more complex in my mappin.
for example ... I like to use the "tactile" mask that comes by default (slightly modified) and the F, G, H, L and M keys (filter, gain, high, medium and low) automatically change the panel to "bottom_eq"
But they are in the "bottom_fx" panel, they become the slider of the effect. Everything is a matter of imagination!
My idea is to be able to do it at different speeds.
For example, when it is administered only once, it will slide by 5% and will be pressed quickly, such as double-clicking on only 1%.
In fact, I like more to program buttons or scripts, instead of playing live ... I'm quite clumsy with my fingers and I always end up pressing buttons that I should not.
Posté Fri 01 Feb 19 @ 9:54 am