Hello.
Can I get equalizer value to textzone element ?
I wanna create smthng like this: http://i.piccy.info/i9/c9a819ee8ad830040e0193ce77d55230/1394265418/21486/691761/Bez_ymeny_2.jpg
Can I get equalizer value to textzone element ?
I wanna create smthng like this: http://i.piccy.info/i9/c9a819ee8ad830040e0193ce77d55230/1394265418/21486/691761/Bez_ymeny_2.jpg
geposted Sat 08 Mar 14 @ 1:57 am
Nice and easy, end the text zone entry with this.
format="`deck 1 eq_low`"/>
the other 2 are mid and high.
format="`deck 1 eq_low`"/>
the other 2 are mid and high.
geposted Sat 08 Mar 14 @ 6:07 am
to have it whithout the "%" and whithout de decimal :
`deck 1 eq_high & param_multiply 100 & param_cast 'integer'
`deck 1 eq_high & param_multiply 100 & param_cast 'integer'
geposted Sun 09 Mar 14 @ 12:07 am
I don't think the % sign is included in the way I wrote, to include it
format="`deck 1 eq_low`%"/>
format="`deck 1 eq_low`%"/>
geposted 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 ?
so, can i set color, for example, blue when value is 50% and else just white color ?
geposted Sun 09 Mar 14 @ 7:55 am
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>
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>
geposted Sun 09 Mar 14 @ 10:23 am