You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "mike (JIRA)" <ji...@apache.org> on 2013/01/30 15:33:12 UTC

[jira] [Created] (FLEX-33373) bindable styles in ColorTransform

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