Quick Sign In:  

Forum: VirtualDJ Skins

Topic: Get eq value

This topic is old and might contain outdated or incorrect information.

 

Posted Sat 08 Mar 14 @ 1:57 am
locoDogPRO InfinityModeratorMember since 2013
Nice and easy, end the text zone entry with this.

format="`deck 1 eq_low`"/>

the other 2 are mid and high.
 

Posted Sat 08 Mar 14 @ 6:07 am
Dodge57PRO InfinityMember since 2009
to have it whithout the "%" and whithout de decimal :
`deck 1 eq_high & param_multiply 100 & param_cast 'integer'
 

Posted Sun 09 Mar 14 @ 12:07 am
locoDogPRO InfinityModeratorMember since 2013
I don't think the % sign is included in the way I wrote, to include it

format="`deck 1 eq_low`%"/>
 

Posted Sun 09 Mar 14 @ 6:22 am
thanks for help, guys.
so, can i set color, for example, blue when value is 50% and else just white color ?
 

Posted Sun 09 Mar 14 @ 7:55 am
Dodge57PRO InfinityMember since 2009
with only `deck 1 eq_high you` have a decimal pourcetage value, like 45,77%
with `deck 1 eq_high & param_multiply 100 & param_cast 'integer'` you get 45


for the colors you must use panels:

<pannel pannel="platines" id="aigus1a" visible="deck 1 eq_high 50% ? off : on">
<size width="21" height="10"/>
<pos x="193" y="97"/>
<up x="193" y="1153"/>
</pannel>
<pannel pannel="platines" id="aigus1b" visible="deck 1 eq_high 50% ? on : off">
<size width="21" height="10"/>
<pos x="193" y="97"/>
<up x="193" y="1153"/>
</pannel>
<textzone pannel="aigus1a">
<size width="21" height="10"/>
<pos x="193" y="97"/>
<up x="193" y="1153"/>
<text dx="0" dy="0" font="Arial" size="12" color="#828282" align="center" format="`deck 1 eq_high & param_multiply 100 & param_cast 'integer'`"/>
</textzone>
<textzone pannel="aigus1b">
<size width="21" height="10"/>
<pos x="193" y="97"/>
<up x="193" y="1153"/>
<text dx="0" dy="0" font="Arial" size="12" color="#7CBA7C" align="center" format="`deck 1 eq_high & param_multiply 100 & param_cast 'integer'`"/>
</textzone>
 

Posted Sun 09 Mar 14 @ 10:23 am


(Old topics and forums are automatically closed)