<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Skinning A Button in Flex 4 Using FXG</title>
	<atom:link href="http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/</link>
	<description>News and updates from the people at SmartLogic Solutions</description>
	<lastBuildDate>Fri, 12 Mar 2010 02:06:34 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Greg Jastrab</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-2410</link>
		<dc:creator>Greg Jastrab</dc:creator>
		<pubDate>Mon, 25 May 2009 04:34:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-2410</guid>
		<description>@greg - Did you not try the code that is posted in the comment immediately preceeding this?</description>
		<content:encoded><![CDATA[<p>@greg &#8211; Did you not try the code that is posted in the comment immediately preceeding this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Lafrance</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-2408</link>
		<dc:creator>Greg Lafrance</dc:creator>
		<pubDate>Mon, 25 May 2009 04:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-2408</guid>
		<description>The Flex 4 sample apps I have tried in this blog have not compiled for me thus far. Would it be possible for you to bring them up to speed with the current SDK so they work without having to change anything?</description>
		<content:encoded><![CDATA[<p>The Flex 4 sample apps I have tried in this blog have not compiled for me thus far. Would it be possible for you to bring them up to speed with the current SDK so they work without having to change anything?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Jastrab</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-937</link>
		<dc:creator>Greg Jastrab</dc:creator>
		<pubDate>Wed, 13 May 2009 01:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-937</guid>
		<description>@steed I tried to update the following files to as closely match the examples, but run under the latest SDK (I built it from revision 6860 from the Flex SDK trunk.

This example is a good demonstration of using the new CSS3 namespace styling.

&lt;b&gt;NOTE:&lt;/b&gt; This isn&#039;t necessarily how I&#039;d recommend to properly skin the buttons, but it will at least get the example above to run so you can see it in action.

NewSkinning.mxml
&lt;pre lang=&quot;xml&quot;&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;s:Application xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;
			 xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot;
			 backgroundColor=&quot;gray&quot;&gt;

	&lt;Style&gt;
		@namespace s &quot;library://ns.adobe.com/flex/spark&quot;;
		s&#124;Button { skinClass: ClassReference(&quot;MyButtonSkin&quot;); }
		.otherButton { skinClass: ClassReference(&quot;OtherSkin&quot;); }
	&lt;/Style&gt;

	&lt;s:layout&gt;
		&lt;s:VerticalLayout /&gt;
	&lt;/s:layout&gt;

	&lt;s:Button label=&quot;Hello World&quot; /&gt;

	&lt;s:Button styleName=&quot;otherButton&quot; label=&quot;Hello World 2&quot; /&gt;

&lt;/s:Application&gt;&lt;/pre&gt;

MyButtonSkin.mxml
&lt;pre lang=&quot;xml&quot;&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;s:SparkSkin xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;
			 xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot;
			 minHeight=&quot;20&quot;&gt;

	&lt;Metadata&gt;
		[HostComponent(&quot;spark.components.Button&quot;)]
	&lt;/Metadata&gt;

	&lt;s:states&gt;
		&lt;s:State name=&quot;up&quot; /&gt;
		&lt;s:State name=&quot;over&quot; /&gt;
		&lt;s:State name=&quot;down&quot; /&gt;
		&lt;s:State name=&quot;disabled&quot; /&gt;
	&lt;/s:states&gt;

	&lt;s:Rect left=&quot;0&quot; right=&quot;0&quot; top=&quot;0&quot; bottom=&quot;0&quot; minWidth=&quot;100&quot; minHeight=&quot;10&quot;&gt;
		&lt;s:fill&gt;
			&lt;s:SolidColor color=&quot;white&quot; color.over=&quot;gray&quot; color.down=&quot;#ff0562&quot; /&gt;
		&lt;/s:fill&gt;
		&lt;s:stroke&gt;
			&lt;s:SolidColorStroke color=&quot;#020202&quot; color.over=&quot;#ff00ff&quot; /&gt;
		&lt;/s:stroke&gt;
	&lt;/s:Rect&gt;

	&lt;s:SimpleText id=&quot;labelElement&quot; fontFamily=&quot;Arial&quot; fontSize=&quot;12&quot;
				  color=&quot;#ff0000&quot; color.over=&quot;#0000ff&quot; color.down=&quot;#00ff00&quot;
				  horizontalCenter=&quot;0&quot; verticalCenter=&quot;0&quot; /&gt;

&lt;/s:SparkSkin&gt;&lt;/pre&gt;

OtherSkin.mxml
&lt;pre lang=&quot;xml&quot;&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;s:SparkSkin xmlns=&quot;http://ns.adobe.com/mxml/2009&quot;
			 xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot;&gt;

	&lt;Metadata&gt;
		[HostComponent(&quot;spark.components.Button&quot;)]
	&lt;/Metadata&gt;

	&lt;s:states&gt;
		&lt;s:State name=&quot;up&quot; /&gt;
		&lt;s:State name=&quot;over&quot; /&gt;
		&lt;s:State name=&quot;down&quot; /&gt;
		&lt;s:State name=&quot;disabled&quot; /&gt;
	&lt;/s:states&gt;

	&lt;s:Ellipse width=&quot;50&quot; height=&quot;30&quot;&gt;
		&lt;s:fill&gt;
			&lt;s:SolidColor color=&quot;blue&quot; color.over=&quot;red&quot; color.down=&quot;white&quot; /&gt;
		&lt;/s:fill&gt;
	&lt;/s:Ellipse&gt;

&lt;/s:SparkSkin&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@steed I tried to update the following files to as closely match the examples, but run under the latest SDK (I built it from revision 6860 from the Flex SDK trunk.</p>
<p>This example is a good demonstration of using the new CSS3 namespace styling.</p>
<p><b>NOTE:</b> This isn&#8217;t necessarily how I&#8217;d recommend to properly skin the buttons, but it will at least get the example above to run so you can see it in action.</p>
<p>NewSkinning.mxml</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:Application</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #009900;">			 <span style="color: #000066;">xmlns:s</span>=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span></span>
<span style="color: #009900;">			 <span style="color: #000066;">backgroundColor</span>=<span style="color: #ff0000;">&quot;gray&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		@namespace s &quot;library://ns.adobe.com/flex/spark&quot;;
		s|Button { skinClass: ClassReference(&quot;MyButtonSkin&quot;); }
		.otherButton { skinClass: ClassReference(&quot;OtherSkin&quot;); }
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:layout<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:VerticalLayout</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:layout<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:Button</span> <span style="color: #000066;">label</span>=<span style="color: #ff0000;">&quot;Hello World&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:Button</span> <span style="color: #000066;">styleName</span>=<span style="color: #ff0000;">&quot;otherButton&quot;</span> <span style="color: #000066;">label</span>=<span style="color: #ff0000;">&quot;Hello World 2&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:Application<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>MyButtonSkin.mxml</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:SparkSkin</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #009900;">			 <span style="color: #000066;">xmlns:s</span>=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span></span>
<span style="color: #009900;">			 <span style="color: #000066;">minHeight</span>=<span style="color: #ff0000;">&quot;20&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Metadata<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		[HostComponent(&quot;spark.components.Button&quot;)]
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Metadata<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:states<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;up&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;over&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;down&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;disabled&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:states<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:Rect</span> <span style="color: #000066;">left</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">right</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">top</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">bottom</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">minWidth</span>=<span style="color: #ff0000;">&quot;100&quot;</span> <span style="color: #000066;">minHeight</span>=<span style="color: #ff0000;">&quot;10&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:fill<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:SolidColor</span> <span style="color: #000066;">color</span>=<span style="color: #ff0000;">&quot;white&quot;</span> <span style="color: #000066;">color.over</span>=<span style="color: #ff0000;">&quot;gray&quot;</span> <span style="color: #000066;">color.down</span>=<span style="color: #ff0000;">&quot;#ff0562&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:fill<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:stroke<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:SolidColorStroke</span> <span style="color: #000066;">color</span>=<span style="color: #ff0000;">&quot;#020202&quot;</span> <span style="color: #000066;">color.over</span>=<span style="color: #ff0000;">&quot;#ff00ff&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:stroke<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:Rect<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:SimpleText</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;labelElement&quot;</span> <span style="color: #000066;">fontFamily</span>=<span style="color: #ff0000;">&quot;Arial&quot;</span> <span style="color: #000066;">fontSize</span>=<span style="color: #ff0000;">&quot;12&quot;</span></span>
<span style="color: #009900;">				  <span style="color: #000066;">color</span>=<span style="color: #ff0000;">&quot;#ff0000&quot;</span> <span style="color: #000066;">color.over</span>=<span style="color: #ff0000;">&quot;#0000ff&quot;</span> <span style="color: #000066;">color.down</span>=<span style="color: #ff0000;">&quot;#00ff00&quot;</span></span>
<span style="color: #009900;">				  <span style="color: #000066;">horizontalCenter</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">verticalCenter</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:SparkSkin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>OtherSkin.mxml</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:SparkSkin</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #009900;">			 <span style="color: #000066;">xmlns:s</span>=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Metadata<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		[HostComponent(&quot;spark.components.Button&quot;)]
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Metadata<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:states<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;up&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;over&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;down&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:State</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;disabled&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:states<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:Ellipse</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">&quot;30&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:fill<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;s:SolidColor</span> <span style="color: #000066;">color</span>=<span style="color: #ff0000;">&quot;blue&quot;</span> <span style="color: #000066;">color.over</span>=<span style="color: #ff0000;">&quot;red&quot;</span> <span style="color: #000066;">color.down</span>=<span style="color: #ff0000;">&quot;white&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:fill<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:Ellipse<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/s:SparkSkin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Jastrab</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-936</link>
		<dc:creator>Greg Jastrab</dc:creator>
		<pubDate>Tue, 12 May 2009 22:20:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-936</guid>
		<description>@steed this was an old post and the latest Gumbo development has significantly changed since then.  I&#039;ll try to post a follow up soon to demonstrate how this code should be altered to be inline w/ the current Flex 4 source.</description>
		<content:encoded><![CDATA[<p>@steed this was an old post and the latest Gumbo development has significantly changed since then.  I&#8217;ll try to post a follow up soon to demonstrate how this code should be altered to be inline w/ the current Flex 4 source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steed</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-935</link>
		<dc:creator>Steed</dc:creator>
		<pubDate>Tue, 12 May 2009 22:14:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-935</guid>
		<description>Other question:

My FxButton don’t show Chinese in normal.
in fact ,My all Gumbo components are same.

My code:





</description>
		<content:encoded><![CDATA[<p>Other question:</p>
<p>My FxButton don’t show Chinese in normal.<br />
in fact ,My all Gumbo components are same.</p>
<p>My code:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steed</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-934</link>
		<dc:creator>Steed</dc:creator>
		<pubDate>Tue, 12 May 2009 22:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-934</guid>
		<description>In comple up code,I have the ERROR:

Could not resolve  to a component implementation.

I remove the  is OK , but have new ERROR:

data no defined in  label=&quot;{data.label}&quot; 

Can tall me WHY ? thanks.</description>
		<content:encoded><![CDATA[<p>In comple up code,I have the ERROR:</p>
<p>Could not resolve  to a component implementation.</p>
<p>I remove the  is OK , but have new ERROR:</p>
<p>data no defined in  label=&#8221;{data.label}&#8221; </p>
<p>Can tall me WHY ? thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mani</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-320</link>
		<dc:creator>mani</dc:creator>
		<pubDate>Sat, 20 Sep 2008 02:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-320</guid>
		<description>Hello, thanks for the wonderful artical.
But, anybody could tell me , where to merge the namespace together? In flex-configure.xml?  But it doesn&#039;t work@_@, If anybody know that, please email me, thanks very much~</description>
		<content:encoded><![CDATA[<p>Hello, thanks for the wonderful artical.<br />
But, anybody could tell me , where to merge the namespace together? In flex-configure.xml?  But it doesn&#8217;t work@_@, If anybody know that, please email me, thanks very much~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash tutorials &#124; Flex Skin roundup &#124; Lemlinh.com</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-287</link>
		<dc:creator>Flash tutorials &#124; Flex Skin roundup &#124; Lemlinh.com</dc:creator>
		<pubDate>Sun, 07 Sep 2008 08:34:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-287</guid>
		<description>[...] on the Adobe Open Source site, watching Ely Greenfield’s video on Adobe TV and reading some blog posts I thought I’d jump right into learning how to skin components in Flex [...]</description>
		<content:encoded><![CDATA[<p>[...] on the Adobe Open Source site, watching Ely Greenfield’s video on Adobe TV and reading some blog posts I thought I’d jump right into learning how to skin components in Flex [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Jastrab</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-206</link>
		<dc:creator>Greg Jastrab</dc:creator>
		<pubDate>Tue, 19 Aug 2008 06:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-206</guid>
		<description>Since the states syntax has drastically changed, I&#039;m not surprised that design view won&#039;t work for Flex 4 in Flex Builder 3.  When using Flex Builder 3 not everything is going to be guaranteed to work with the Gumbo SDK, so you&#039;re going to have to live with some of these issues I think.</description>
		<content:encoded><![CDATA[<p>Since the states syntax has drastically changed, I&#8217;m not surprised that design view won&#8217;t work for Flex 4 in Flex Builder 3.  When using Flex Builder 3 not everything is going to be guaranteed to work with the Gumbo SDK, so you&#8217;re going to have to live with some of these issues I think.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lakshmikanthreddy</title>
		<link>http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/comment-page-1/#comment-204</link>
		<dc:creator>lakshmikanthreddy</dc:creator>
		<pubDate>Tue, 19 Aug 2008 06:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.smartlogicsolutions.com/2008/07/16/skinning-button-flex-4-fxg/#comment-204</guid>
		<description>even i am getting the same error , the application is running fine with Gumbo SDK but it is unable to open in the Design mode , can anyone help me out .</description>
		<content:encoded><![CDATA[<p>even i am getting the same error , the application is running fine with Gumbo SDK but it is unable to open in the Design mode , can anyone help me out .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
