<?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: Why Extending Flex Sucks</title>
	<atom:link href="http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/feed/" rel="self" type="application/rss+xml" />
	<link>http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/</link>
	<description>Web Applications and Open Source</description>
	<lastBuildDate>Wed, 01 Feb 2012 15:17:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: admin</title>
		<link>http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/comment-page-1/#comment-286</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 29 Jan 2010 08:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://arielsommeria.com/blog/?p=99#comment-286</guid>
		<description>Hi Bitpusher,
you can&#039;t do what you want, but lo and behold, the horizontal list:
http://livedocs.adobe.com/flex/3/langref/mx/controls/HorizontalList.html 
You can&#039;t extend, but sometimes they do the work for you :-)
bye
Ariel</description>
		<content:encoded><![CDATA[<p>Hi Bitpusher,<br />
you can&#8217;t do what you want, but lo and behold, the horizontal list:<br />
<a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/HorizontalList.html" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/mx/controls/HorizontalList.html</a><br />
You can&#8217;t extend, but sometimes they do the work for you <img src='http://arielsommeria.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
bye<br />
Ariel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bitpusher</title>
		<link>http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/comment-page-1/#comment-285</link>
		<dc:creator>bitpusher</dc:creator>
		<pubDate>Sun, 24 Jan 2010 22:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://arielsommeria.com/blog/?p=99#comment-285</guid>
		<description>Hey Ariel,
Couldn&#039;t agree more.
Just spent a week trying to create custom list and rendrer from ListBase an ItemRenderer.
It seems Adobe never imagined that a list could be horizontal.
I give up.</description>
		<content:encoded><![CDATA[<p>Hey Ariel,<br />
Couldn&#8217;t agree more.<br />
Just spent a week trying to create custom list and rendrer from ListBase an ItemRenderer.<br />
It seems Adobe never imagined that a list could be horizontal.<br />
I give up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/comment-page-1/#comment-78</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 09 Apr 2009 07:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://arielsommeria.com/blog/?p=99#comment-78</guid>
		<description>Hi Tink,
thanks for the explanation! I&#039;ll try to keep my hands off mx_internal then :-)
As for includes, I can see your point, but it&#039;s pretty bad for code portability, I find. Wrapping your code in a class and finding it a space in your codebase is probably worth your trouble in the long run. 
Ariel</description>
		<content:encoded><![CDATA[<p>Hi Tink,<br />
thanks for the explanation! I&#8217;ll try to keep my hands off mx_internal then <img src='http://arielsommeria.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
As for includes, I can see your point, but it&#8217;s pretty bad for code portability, I find. Wrapping your code in a class and finding it a space in your codebase is probably worth your trouble in the long run.<br />
Ariel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tink</title>
		<link>http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/comment-page-1/#comment-77</link>
		<dc:creator>Tink</dc:creator>
		<pubDate>Thu, 09 Apr 2009 02:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://arielsommeria.com/blog/?p=99#comment-77</guid>
		<description>mx_internal denotes that Adobe may not support backwards compatibility with those methods.

i.e. if you override public or protected methods, you can rest assured that framework updates won&#039;t break your code.

If you extend Adobes classes includes shouldn&#039;t affect you. If you copying their code in custom classes you can omit things like.

include “../core/Version.as”;

These ActionScript files (they are not classes) enable you to isolate and re-use code, and cutdown on the code in the class. For instance you can isolated all the border styles out into one file, and then just include that in any component that you have built to support those styles.

Basically an include is the same as doing a Script tag and setting its source property to an ActionScript file.</description>
		<content:encoded><![CDATA[<p>mx_internal denotes that Adobe may not support backwards compatibility with those methods.</p>
<p>i.e. if you override public or protected methods, you can rest assured that framework updates won&#8217;t break your code.</p>
<p>If you extend Adobes classes includes shouldn&#8217;t affect you. If you copying their code in custom classes you can omit things like.</p>
<p>include “../core/Version.as”;</p>
<p>These ActionScript files (they are not classes) enable you to isolate and re-use code, and cutdown on the code in the class. For instance you can isolated all the border styles out into one file, and then just include that in any component that you have built to support those styles.</p>
<p>Basically an include is the same as doing a Script tag and setting its source property to an ActionScript file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rounding Up April Fool&#8217;s Week</title>
		<link>http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/comment-page-1/#comment-74</link>
		<dc:creator>Rounding Up April Fool&#8217;s Week</dc:creator>
		<pubDate>Mon, 06 Apr 2009 15:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://arielsommeria.com/blog/?p=99#comment-74</guid>
		<description>[...] While some may wonder why Adobe Flex has next to no community-inputs coming in despite being open source, Ariel tells us why he thinks extending Flex sucks. [...]</description>
		<content:encoded><![CDATA[<p>[...] While some may wonder why Adobe Flex has next to no community-inputs coming in despite being open source, Ariel tells us why he thinks extending Flex sucks. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anselm Bradford</title>
		<link>http://arielsommeria.com/blog/2009/04/03/why-extending-flex-sucks/comment-page-1/#comment-72</link>
		<dc:creator>Anselm Bradford</dc:creator>
		<pubDate>Fri, 03 Apr 2009 17:49:57 +0000</pubDate>
		<guid isPermaLink="false">http://arielsommeria.com/blog/?p=99#comment-72</guid>
		<description>Yeah, overriding the Flex classes is painful :(</description>
		<content:encoded><![CDATA[<p>Yeah, overriding the Flex classes is painful <img src='http://arielsommeria.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

