Ok, I have the entire unit mapped. Working like a champion. One thing I cant crack is the browser scroll.
Theres a large endless encoder knob that I would like to use to scroll up and down on a play list. Anyone know the code?
NOTE:
"param_greater 50% browser_scroll +1 : browser_scroll -1"
"param_smaller 50% browser_scroll +1 : browser_scroll -1"
"param_greater 0% browser_scroll +1 : browser_scroll -1"
"param_smaller 0% browser_scroll +1 : browser_scroll -1"
...Don't work.
Theres a large endless encoder knob that I would like to use to scroll up and down on a play list. Anyone know the code?
NOTE:
"param_greater 50% browser_scroll +1 : browser_scroll -1"
"param_smaller 50% browser_scroll +1 : browser_scroll -1"
"param_greater 0% browser_scroll +1 : browser_scroll -1"
"param_smaller 0% browser_scroll +1 : browser_scroll -1"
...Don't work.
Posted Wed 06 Feb 13 @ 3:39 pm
you just missed the question mark in the conditional variable ;-)
param_greater 0% ? browser_scroll +1 : browser_scroll -1
param_greater 0% ? browser_scroll +1 : browser_scroll -1
Posted Wed 06 Feb 13 @ 5:31 pm
I use,
"param_greater 50% ? browser_scroll +1 : browser_scroll -1"
"param_greater 50% ? browser_scroll +1 : browser_scroll -1"
Posted Wed 06 Feb 13 @ 6:27 pm
If I use either, I turn the knob both left or right and the browser only scrolls up. It only scroll in one direction. Any other possibilities?
Posted Thu 07 Feb 13 @ 4:38 pm
Have you created a definition file or are you trying to map the device as Simple Midi Wrapper ?
Posted Thu 07 Feb 13 @ 5:42 pm
I've been using the the midi wrapper. Phantom has been in contact with me. I gave him some sysex id info and he may be sending me a file he created. I'm really hoping to start using this mixer is real world. It's amazing.
Posted Fri 08 Feb 13 @ 12:21 pm
As for a list of midi notes its in the manual or you can download a pdf from the pioneer site.
Posted Mon 08 Jul 13 @ 11:12 pm
Have you tried
param_greater 0% ? browser_scroll -1 : browser_scroll +1
You can switch the '-' and '+' if you want to invert the scroll directions.
param_greater 0% ? browser_scroll -1 : browser_scroll +1
You can switch the '-' and '+' if you want to invert the scroll directions.
Posted Sun 17 Apr 16 @ 11:20 pm