<?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 for Blue Flex</title>
	<atom:link href="http://kennethsutherland.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kennethsutherland.com</link>
	<description>Flex with a hint of cool</description>
	<lastBuildDate>Thu, 08 Sep 2011 08:01:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>Comment on Exploding Pie Charts by Nathan</title>
		<link>http://kennethsutherland.com/2009/04/02/exploding-pie-charts/comment-page-1/#comment-6674</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Thu, 08 Sep 2011 08:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=57#comment-6674</guid>
		<description>Hi Kenneth,

Good post and nice explanation.  

How do we get the PieSeries fill color information inside the Legend ?  So that I can change the color of my LegendText based on the PieColor . 

I&#039;ve tried accessing super.element in my custom LegendItem class. However I could not find it.

Need your help.</description>
		<content:encoded><![CDATA[<p>Hi Kenneth,</p>
<p>Good post and nice explanation.  </p>
<p>How do we get the PieSeries fill color information inside the Legend ?  So that I can change the color of my LegendText based on the PieColor . </p>
<p>I&#8217;ve tried accessing super.element in my custom LegendItem class. However I could not find it.</p>
<p>Need your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updating bindings when you only change a property inside an Object by Kenneth</title>
		<link>http://kennethsutherland.com/2011/08/30/updating-bindings-when-you-only-change-a-property-inside-an-object/comment-page-1/#comment-6611</link>
		<dc:creator>Kenneth</dc:creator>
		<pubDate>Wed, 31 Aug 2011 09:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=705#comment-6611</guid>
		<description>Making the property bindable doesn&#039;t always work. It does depend on what exactly you are doing (as is always the case). 
I&#039;d tend to stay away from making a whole class Bindable as well (unless of course I did want everything bindable - and if I did it would be better to have everything fire custom events. So I&#039;d not mark the class as Bindable.)
Perhaps I should have used a better example, but I was wanting a quick way to show how to use the BindingManager.executeBindings. I&#039;ve seen a few helpful links that explain when and where using binding inside complex objects doesn&#039;t work but can&#039;t find them right now. Will post up a link shortly to help explain.
The above is just another way of executing bindings when the normal methods don&#039;t quite work.</description>
		<content:encoded><![CDATA[<p>Making the property bindable doesn&#8217;t always work. It does depend on what exactly you are doing (as is always the case).<br />
I&#8217;d tend to stay away from making a whole class Bindable as well (unless of course I did want everything bindable &#8211; and if I did it would be better to have everything fire custom events. So I&#8217;d not mark the class as Bindable.)<br />
Perhaps I should have used a better example, but I was wanting a quick way to show how to use the BindingManager.executeBindings. I&#8217;ve seen a few helpful links that explain when and where using binding inside complex objects doesn&#8217;t work but can&#8217;t find them right now. Will post up a link shortly to help explain.<br />
The above is just another way of executing bindings when the normal methods don&#8217;t quite work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updating bindings when you only change a property inside an Object by Miguel Martín</title>
		<link>http://kennethsutherland.com/2011/08/30/updating-bindings-when-you-only-change-a-property-inside-an-object/comment-page-1/#comment-6609</link>
		<dc:creator>Miguel Martín</dc:creator>
		<pubDate>Wed, 31 Aug 2011 06:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=705#comment-6609</guid>
		<description>Or you can declare your text attribute Bindable inside your ObjectDataVO
&lt;code&gt;
// [Bindable] You can declare the whole class Bindable too, making every single public attribute Bindable. I don&#039;t recommend this approach, making Bindable only those attrs which have to be bindable.
public class ObjectDataVO {
    [Bindable]
    public var text:String;
}
&lt;/code&gt;

Or even, you can wrap your object with and ObjectProxy class, which implies that it&#039;ll trigger events on ObjectDataVO text property changes.</description>
		<content:encoded><![CDATA[<p>Or you can declare your text attribute Bindable inside your ObjectDataVO<br />
<code><br />
// [Bindable] You can declare the whole class Bindable too, making every single public attribute Bindable. I don't recommend this approach, making Bindable only those attrs which have to be bindable.<br />
public class ObjectDataVO {<br />
    [Bindable]<br />
    public var text:String;<br />
}<br />
</code></p>
<p>Or even, you can wrap your object with and ObjectProxy class, which implies that it&#8217;ll trigger events on ObjectDataVO text property changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple tip #4 (GOTCHA) &#8211; Datagrid borders by Simple tip #5 Create function to call any function with unknown args &#124; Blue Flex</title>
		<link>http://kennethsutherland.com/2010/09/17/simple-tip-4-gotach-datagrid-borders/comment-page-1/#comment-6431</link>
		<dc:creator>Simple tip #5 Create function to call any function with unknown args &#124; Blue Flex</dc:creator>
		<pubDate>Wed, 03 Aug 2011 20:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=594#comment-6431</guid>
		<description>[...] Simple tip #4 (GOTCHA) &#8211; Datagrid borders [...]</description>
		<content:encoded><![CDATA[<p>[...] Simple tip #4 (GOTCHA) &#8211; Datagrid borders [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex, Firefox plug-in + community. by Mrk</title>
		<link>http://kennethsutherland.com/2009/05/05/flex-firefox-plug-in-community/comment-page-1/#comment-6024</link>
		<dc:creator>Mrk</dc:creator>
		<pubDate>Wed, 08 Jun 2011 17:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=232#comment-6024</guid>
		<description>Could you add URLs to the online Flex Language Reference Manuals?

http://docs.huihoo.com/flex/4/

http://livedocs.adobe.com/labs/flex/3/langref/index.html</description>
		<content:encoded><![CDATA[<p>Could you add URLs to the online Flex Language Reference Manuals?</p>
<p><a href="http://docs.huihoo.com/flex/4/" rel="nofollow">http://docs.huihoo.com/flex/4/</a></p>
<p><a href="http://livedocs.adobe.com/labs/flex/3/langref/index.html" rel="nofollow">http://livedocs.adobe.com/labs/flex/3/langref/index.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LocalConnection – AIR -&gt; Flex (and back if you want) by Kenneth</title>
		<link>http://kennethsutherland.com/2009/04/07/localconnection-%e2%80%93-air-flex-and-back-if-you-want/comment-page-1/#comment-5870</link>
		<dc:creator>Kenneth</dc:creator>
		<pubDate>Mon, 02 May 2011 08:26:54 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=92#comment-5870</guid>
		<description>@Mike, yeah just right click on the apps and select the view source. You can do it on both flex and AIR app.  I&#039;ve just tried it and it is working.</description>
		<content:encoded><![CDATA[<p>@Mike, yeah just right click on the apps and select the view source. You can do it on both flex and AIR app.  I&#8217;ve just tried it and it is working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LocalConnection – AIR -&gt; Flex (and back if you want) by mike</title>
		<link>http://kennethsutherland.com/2009/04/07/localconnection-%e2%80%93-air-flex-and-back-if-you-want/comment-page-1/#comment-5538</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Mon, 04 Apr 2011 01:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=92#comment-5538</guid>
		<description>I&#039;m trying to send a message from AIR (flashbuilder 4) to an AS2 file.  The LocalConnection says &quot;success&quot; but the function is not involked!  Is your source code for the flash/flex piece available?

Thanks,

Mike</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to send a message from AIR (flashbuilder 4) to an AS2 file.  The LocalConnection says &#8220;success&#8221; but the function is not involked!  Is your source code for the flash/flex piece available?</p>
<p>Thanks,</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Additional compiler arguments &#8211; debug only code by Kenneth Sutherland</title>
		<link>http://kennethsutherland.com/2011/01/07/additional-compiler-arguments-debug-only-code/comment-page-1/#comment-4740</link>
		<dc:creator>Kenneth Sutherland</dc:creator>
		<pubDate>Thu, 03 Feb 2011 11:31:57 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=618#comment-4740</guid>
		<description>I&#039;ve not actually used ant with the above, but from what I&#039;ve read this will explain it to you.

http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html</description>
		<content:encoded><![CDATA[<p>I&#8217;ve not actually used ant with the above, but from what I&#8217;ve read this will explain it to you.</p>
<p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Additional compiler arguments &#8211; debug only code by Neil</title>
		<link>http://kennethsutherland.com/2011/01/07/additional-compiler-arguments-debug-only-code/comment-page-1/#comment-4721</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Wed, 02 Feb 2011 10:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=618#comment-4721</guid>
		<description>I have bookmarked this page as a reminder. Do you know how to do this using ANT?</description>
		<content:encoded><![CDATA[<p>I have bookmarked this page as a reminder. Do you know how to do this using ANT?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3D Cube Component (multi-sided) by Spark</title>
		<link>http://kennethsutherland.com/2009/04/30/3d-cube-component-multi-sided/comment-page-1/#comment-3380</link>
		<dc:creator>Spark</dc:creator>
		<pubDate>Thu, 21 Oct 2010 13:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://kennethsutherland.com/?p=171#comment-3380</guid>
		<description>How could i download the source for this ? I&#039;d like to learn how to create and control this. Thanks</description>
		<content:encoded><![CDATA[<p>How could i download the source for this ? I&#8217;d like to learn how to create and control this. Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

