I would like to use my jog wheel on my Numark Total Control for scrolling in my browser window. With Traktor I could use one JOG wheel for browsing through the track list and the other JOG wheel for jumping through a song I was previewing. VirtualDJ treats the NTC JOGs together. In addition, turning the JOG wheel only works for scrolling when it's turned pretty fast, making it impossible to gradually step through songs. Is there some sort of inner adjustment I can do to fix this?
Posté Fri 19 Mar 10 @ 12:19 am
Do you use the function "wheel_mode" ?
Posté Fri 19 Mar 10 @ 2:28 pm
I tried playing with this:
param_greater 50% ? browser_scroll +1 : browser_scroll -1
No matter what I set the param_greater value to it only scrolls up. I tried
wheel_mode "browser" & browser_scroll
but it still acts like a jog wheel.
param_greater 50% ? browser_scroll +1 : browser_scroll -1
No matter what I set the param_greater value to it only scrolls up. I tried
wheel_mode "browser" & browser_scroll
but it still acts like a jog wheel.
Posté Fri 19 Mar 10 @ 9:40 pm
Any other suggestions?
Posté Wed 24 Mar 10 @ 12:41 pm
You will need to map the following to a button to toggle jogwheel browsing on/off for both decks:
wheel_mode "browser" ? deck 1 wheel_mode "jog" & deck 2 wheel_mode "jog" : deck 1 wheel_mode "browser" & deck 2 wheel_mode "browser"
When toggled on, the jogwheels will now browse files.
To make them act independently, change the jogwheel mapping to:
wheel_mode "browser" ? action deck 1 ? browser_window "folders" & jog_wheel : browser_window "songs" & jog_wheel : jog_wheel
wheel_mode "browser" ? deck 1 wheel_mode "jog" & deck 2 wheel_mode "jog" : deck 1 wheel_mode "browser" & deck 2 wheel_mode "browser"
When toggled on, the jogwheels will now browse files.
To make them act independently, change the jogwheel mapping to:
wheel_mode "browser" ? action deck 1 ? browser_window "folders" & jog_wheel : browser_window "songs" & jog_wheel : jog_wheel
Posté Wed 24 Mar 10 @ 1:23 pm
Thanks! I actually used a button on my controller to allow for jogging:
down ? deck 1 wheel_mode "jog" & deck 2 wheel_mode "jog" : deck 1 wheel_mode "browser" & deck 2 wheel_mode "browser"
and assigned this to JOG:
wheel_mode "browser" ? action_deck 1 ? browser_window "folders" & jogwheel : browser_window "songs" & jogwheel : jogwheel
I tried both "action deck" and "action_deck" (VDJ likes the latter) but both wheels still browse songs.
down ? deck 1 wheel_mode "jog" & deck 2 wheel_mode "jog" : deck 1 wheel_mode "browser" & deck 2 wheel_mode "browser"
and assigned this to JOG:
wheel_mode "browser" ? action_deck 1 ? browser_window "folders" & jogwheel : browser_window "songs" & jogwheel : jogwheel
I tried both "action deck" and "action_deck" (VDJ likes the latter) but both wheels still browse songs.
Posté Fri 26 Mar 10 @ 12:49 pm
but both wheels still browse songs.
Yes, It's true. I can't get left jogwheel to browser folders, and right jogwheel to browser songs... Any sugestion?
Yes, It's true. I can't get left jogwheel to browser folders, and right jogwheel to browser songs... Any sugestion?
Posté Fri 16 Apr 10 @ 9:36 pm
Try the following:
Map jogwheel to:
Map the button to toggle browsing on/off to:
Map jogwheel to:
wheel_mode "browser" ? action_deck 1 ? browser_window "folders,folders" & jogwheel : browser_window "songs,songs" & jogwheel : jogwheel
Map the button to toggle browsing on/off to:
wheel_mode "browser" ? deck 1 wheel_mode "jog" & deck 2 wheel_mode "jog" : deck 1 wheel_mode "browser" & deck 2 wheel_mode "browser"
Posté Sun 18 Apr 10 @ 6:09 pm
Oh Thanks!. Works Well...
[Please don't quote the message directly above your reply - It's unnecessary and makes the message difficult to read, especially when the quoted text is not distinguished from your own message in any way.]
[Please don't quote the message directly above your reply - It's unnecessary and makes the message difficult to read, especially when the quoted text is not distinguished from your own message in any way.]
Posté Sun 18 Apr 10 @ 8:34 pm