My own skin for the Blue Cat ParametrEQ3 plugin is almost finished but in the middle of the process i skipped something that didn't work as expected and i hope you guys maybe can tell me what is wrong with the code.
See this next simple example skin:
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<SKIN name="ParamEQmono-test1" language_version="1.0" font_face="Tahoma" font_height="14" text_color="#FFFFFF" font_quality="no_anti_alias" background_color="#483D8B" v_margin="10" h_margin="20" pixel_range="4" layout_type="column">
<!--EQ MID BAND 1-->
<COLUMN spacing="15">
<PARAM_TEXT param_id="input15" content="{name} {value}"/>
<!--On/Off Button-->
<IMAGE_PARAM_BUTTON param_id="input15" image="on_off_button.bmp" image_orientation="horizontal" cursor="system::cross" images_count="2"/>
<!--Frequency Text of MidBand1-->
<PARAM_TEXT_CONTROL param_id="input16" cursor="system::cross" mouse_sensitive="true" positions_count="19980" response_curve="linear" content="{value} {unit}" value_format="0005.0" text_color_pushed="#FF0000" text_color_disabled="#808080"/>
</COLUMN>
</SKIN>Previously as you can see i also added a IMAGE_PARAM_BUTTON to turn on/off the MidBand1 and based on that i think it's obvious that when this button is off the band1 is "disabled, this sound weird. The thing is that this state is not working so the question is When a given parameter is considered disabled?, In what scenario can this color attribute can be displayed? I have done several attempts to make the text_color_disabled attribute of the frequency and other band-parameters-related to show as gray color when the band is off but as i said before it's not working. What is wrong? Can this be done really or not?. I'm a new member of this forum. I hope you can understand me.
Best Regards. Thank you in advance.


This is how the previous example code looks like.
Here, the 1st pic shows Band 1 Active is "0.0" meaning that this band is OFF (disabled)
and the next pic shows the opposite i.e. when Band 1 Active is ON it shows "1.0" (enabled).
In the 1st pic the frequency color is supposed to be #808080 (grey) as coded and not #FFFFFF (white).