Hello everyone
My Vestax vci-400 has pads. I want to use one hotkey page and three sample pages in the pad settings. I want the sample pad button on the pad controller to light when a sample is present and blink when it's playing. I can see this on the button LED in mapping like this:
<code>sampler_loaded 1 ? sampler_pad 1 ? blink 300ms : on : off</code>
But then the loop display on the loop page doesn't work. How can I do this? Can I do this in the pad settings?
My Vestax vci-400 has pads. I want to use one hotkey page and three sample pages in the pad settings. I want the sample pad button on the pad controller to light when a sample is present and blink when it's playing. I can see this on the button LED in mapping like this:
<code>sampler_loaded 1 ? sampler_pad 1 ? blink 300ms : on : off</code>
But then the loop display on the loop page doesn't work. How can I do this? Can I do this in the pad settings?
发表时间 Wed 24 Sep 25 @ 9:13 pm
deck master sampler_pad 1 ? blink 300ms : on : off
发表时间 Wed 24 Sep 25 @ 10:41 pm
Thanks for the answer!
Should this be written in the LED mapping or in the pad settings?
Should this be written in the LED mapping or in the pad settings?
发表时间 Thu 25 Sep 25 @ 7:10 am
Let me try to clarify the question.
Virtual DJ has a pad settings menu, and there's a "color" section. Can I set the blinking there? Or does it only affect the interface display?
Virtual DJ has a pad settings menu, and there's a "color" section. Can I set the blinking there? Or does it only affect the interface display?
发表时间 7 days ago @ 12:35 pm
What my attempts led to:
I'm trying this in pad editor, sample page:
sampler_play_stop 8
Drawbacks: The pad doesn't light up when the sample is loaded. It lights up when playing. Playback works when I press the pad.
This displays the way I want:
sampler_play 8 ? blink 300ms : sampler_loaded 8 ? on: off
But playback on the button doesn't work.
I'm trying to combine these:
sampler_play_stop 8 & sampler_play 8 ? blink 300ms : sampler_loaded 8 ? on: off
or
(sampler_play_stop 8) & (sampler_play 8 ? blink 300ms : sampler_loaded 8 ? on: off)
as well as other combinations, it doesn't work at all. What am I doing wrong, what can I do?
I'm trying this in pad editor, sample page:
sampler_play_stop 8
Drawbacks: The pad doesn't light up when the sample is loaded. It lights up when playing. Playback works when I press the pad.
This displays the way I want:
sampler_play 8 ? blink 300ms : sampler_loaded 8 ? on: off
But playback on the button doesn't work.
I'm trying to combine these:
sampler_play_stop 8 & sampler_play 8 ? blink 300ms : sampler_loaded 8 ? on: off
or
(sampler_play_stop 8) & (sampler_play 8 ? blink 300ms : sampler_loaded 8 ? on: off)
as well as other combinations, it doesn't work at all. What am I doing wrong, what can I do?
发表时间 7 days ago @ 1:29 pm
i do it!!!!
This code work
sampler_play 8 ? blink 300ms & & sampler_stop 8 : sampler_loaded 8 ? on & sampler_play 8 : off : nothing
This code work
sampler_play 8 ? blink 300ms & & sampler_stop 8 : sampler_loaded 8 ? on & sampler_play 8 : off : nothing
发表时间 7 days ago @ 1:44 pm