Hello, I have an issue.
I defined this class, to show on deck if "Filter" is active (label visible) or disable (label not visible):
<define class="Filter_Deck" dblclick="filter 50%">
<size width="70" height="22"/>
<text size="22" align="center" action="Filter 0.5 ? nothing : Filter_label"/>
</define>
If I operate with Knob "Filter" on mixer skin, it work OK (when "OFF" the label gone); if I operate on filter Knob on physical controller (Denon DN-MC6000)
the label still always show "FILTER" even when it "OFF". It's gone if I double click on label (as expected).
The action defined on Denon DN-MC6000 Knob is:
var '$samp' ? sampler volume : var '$shift' ? sampler volume : filter
What's wrong ?
The version of Virtual DJ is 8.1 pc Build 2857.1116, on Windows 10.
Thank You in advance for attention.
Gianluca
I defined this class, to show on deck if "Filter" is active (label visible) or disable (label not visible):
<define class="Filter_Deck" dblclick="filter 50%">
<size width="70" height="22"/>
<text size="22" align="center" action="Filter 0.5 ? nothing : Filter_label"/>
</define>
If I operate with Knob "Filter" on mixer skin, it work OK (when "OFF" the label gone); if I operate on filter Knob on physical controller (Denon DN-MC6000)
the label still always show "FILTER" even when it "OFF". It's gone if I double click on label (as expected).
The action defined on Denon DN-MC6000 Knob is:
var '$samp' ? sampler volume : var '$shift' ? sampler volume : filter
What's wrong ?
The version of Virtual DJ is 8.1 pc Build 2857.1116, on Windows 10.
Thank You in advance for attention.
Gianluca
geposted Sun 03 Apr 16 @ 9:57 am
Never mind, I find the issue (it's for value precision).
The solution is:
<text size="22" align="center" action="param_greater 0.505 filter ? Filter_label : param_smaller 0.495 filter ? Filter_label: nothing"/>
The solution is:
<text size="22" align="center" action="param_greater 0.505 filter ? Filter_label : param_smaller 0.495 filter ? Filter_label: nothing"/>
geposted Sun 03 Apr 16 @ 10:15 am
you could use charging options or visibility within the defined or syntax of the action
<panel name="sample" visibility="loaded ? on : off">
</panel>
<slider action="sample" disabled="not get_sample"/>
</slider>
especially I use much, I hope not a great contribution but I hope you help
<panel name="sample" visibility="loaded ? on : off">
</panel>
<slider action="sample" disabled="not get_sample"/>
</slider>
especially I use much, I hope not a great contribution but I hope you help
geposted Tue 05 Apr 16 @ 5:21 pm