mike created FLEX-33373:
---------------------------

             Summary: bindable styles in ColorTransform
                 Key: FLEX-33373
                 URL: https://issues.apache.org/jira/browse/FLEX-33373
             Project: Apache Flex
          Issue Type: Wish
          Components: Skinning
            Reporter: mike
            Priority: Minor


<code>
<?xml version="1.0" encoding="utf-8"?>
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"; 
xmlns:s="library://ns.adobe.com/flex/spark">
        
        <fx:Metadata>
                [HostComponent("spark.components.Button")]
        </fx:Metadata>
        
        <s:states>
                <s:State name="up" />
                <s:State name="over" />
                <s:State name="down" />
                <s:State name="disabled" />
        </s:states>
        
        <s:BitmapImage
                source="@Embed('icon.png')"
                >
                <s:transform>
                        <s:Transform>
                                <s:ColorTransform
                                        color="{getStyle('myColor')}"
                                        color.over="{getStyle('myColorOver)}"
                                        />
                        </s:Transform>
                </s:transform>
        </s:BitmapImage>
        
</s:Skin>
</code>

current code working, but for default state 
<pre>color="{getStyle('myColor')}"</pre> it show black color

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to