<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Resource Bundles in Flex (w/o lots of extra code)</title>
	<atom:link href="http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/</link>
	<description>Just another coding weblog</description>
	<lastBuildDate>Wed, 30 May 2012 18:31:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Hillel</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-3001</link>
		<dc:creator><![CDATA[Hillel]]></dc:creator>
		<pubDate>Wed, 04 Aug 2010 12:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-3001</guid>
		<description><![CDATA[Gobi,

I&#039;d sugget trying to use the resource bundle w/o my class to see where the problem is.]]></description>
		<content:encoded><![CDATA[<p>Gobi,</p>
<p>I&#8217;d sugget trying to use the resource bundle w/o my class to see where the problem is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gobi</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-2953</link>
		<dc:creator><![CDATA[Gobi]]></dc:creator>
		<pubDate>Tue, 20 Jul 2010 05:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-2953</guid>
		<description><![CDATA[Nice code. But I have a error while trying

Unable to resolve resource bundle &quot;it_TA&quot; for locale &quot;en_US&quot;

it_TA is my property file name. It consists tamil(one indian language) language values]]></description>
		<content:encoded><![CDATA[<p>Nice code. But I have a error while trying</p>
<p>Unable to resolve resource bundle &#8220;it_TA&#8221; for locale &#8220;en_US&#8221;</p>
<p>it_TA is my property file name. It consists tamil(one indian language) language values</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NandoLins</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-1228</link>
		<dc:creator><![CDATA[NandoLins]]></dc:creator>
		<pubDate>Tue, 04 Aug 2009 18:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-1228</guid>
		<description><![CDATA[i found a little problem in this solution,
if i want to use 2 components with the same text i´ll have to duplicate the resource keys, otherwise i would have two components with the same id, an off course that´s impossible.]]></description>
		<content:encoded><![CDATA[<p>i found a little problem in this solution,<br />
if i want to use 2 components with the same text i´ll have to duplicate the resource keys, otherwise i would have two components with the same id, an off course that´s impossible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-1173</link>
		<dc:creator><![CDATA[Frank]]></dc:creator>
		<pubDate>Wed, 29 Jul 2009 14:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-1173</guid>
		<description><![CDATA[You need to override resourcesChanged() and call &quot;setLabels&quot; again in it:

// Automatically called when language is changed
override protected function resourcesChanged():void {
   super.resourcesChanged();
   ResourceUtils.setLabels( this );
}

If you cannot override resourcesChanged() (you are not in a UIComponent context), you can listen to the &quot;change&quot; event on the &quot;resourceManager&quot; singleton to know when the function should be called again.]]></description>
		<content:encoded><![CDATA[<p>You need to override resourcesChanged() and call &#8220;setLabels&#8221; again in it:</p>
<p>// Automatically called when language is changed<br />
override protected function resourcesChanged():void {<br />
   super.resourcesChanged();<br />
   ResourceUtils.setLabels( this );<br />
}</p>
<p>If you cannot override resourcesChanged() (you are not in a UIComponent context), you can listen to the &#8220;change&#8221; event on the &#8220;resourceManager&#8221; singleton to know when the function should be called again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karfau</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-1108</link>
		<dc:creator><![CDATA[karfau]]></dc:creator>
		<pubDate>Tue, 21 Jul 2009 22:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-1108</guid>
		<description><![CDATA[Did somebody test if your approach works with changing the language while the app runs? 
I&#039;m trying an similar approach, but the GUI only changes all the labels when I use a direct binding with resourcemManager.getString(...), not with any other combination I used.

Any Idea what I&#039;m doing wrong?

Thx Karfau]]></description>
		<content:encoded><![CDATA[<p>Did somebody test if your approach works with changing the language while the app runs?<br />
I&#8217;m trying an similar approach, but the GUI only changes all the labels when I use a direct binding with resourcemManager.getString(&#8230;), not with any other combination I used.</p>
<p>Any Idea what I&#8217;m doing wrong?</p>
<p>Thx Karfau</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Resource Bundles in Flex (new thoughts on the topic) &#171; Hillel Coren</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-1007</link>
		<dc:creator><![CDATA[Resource Bundles in Flex (new thoughts on the topic) &#171; Hillel Coren]]></dc:creator>
		<pubDate>Mon, 06 Jul 2009 03:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-1007</guid>
		<description><![CDATA[[...] Bundles in Flex (new thoughts on the&#160;topic)  This is the follow up to a post I wrote a little while [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Bundles in Flex (new thoughts on the&nbsp;topic)  This is the follow up to a post I wrote a little while [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FlashApe &#187; Blog Archive &#187; Flex localization with Resource Bundles</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-995</link>
		<dc:creator><![CDATA[FlashApe &#187; Blog Archive &#187; Flex localization with Resource Bundles]]></dc:creator>
		<pubDate>Fri, 03 Jul 2009 20:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-995</guid>
		<description><![CDATA[[...] http://soenkerohde.com/2008/07/flex-localization/ http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/ ( for a nice ResourceManager utility [...]]]></description>
		<content:encoded><![CDATA[<p>[...] <a href="http://soenkerohde.com/2008/07/flex-localization/" rel="nofollow">http://soenkerohde.com/2008/07/flex-localization/</a> <a href="http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/" rel="nofollow">http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/</a> ( for a nice ResourceManager utility [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hillel</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-532</link>
		<dc:creator><![CDATA[Hillel]]></dc:creator>
		<pubDate>Thu, 30 Apr 2009 08:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-532</guid>
		<description><![CDATA[Selva,

If you’ll be using multiple locals resource modules seem like a goo choice

http://livedocs.adobe.com/flex/3/html/help.html?content=l10n_5.html]]></description>
		<content:encoded><![CDATA[<p>Selva,</p>
<p>If you’ll be using multiple locals resource modules seem like a goo choice</p>
<p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=l10n_5.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=l10n_5.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selva</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-518</link>
		<dc:creator><![CDATA[selva]]></dc:creator>
		<pubDate>Wed, 29 Apr 2009 19:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-518</guid>
		<description><![CDATA[hi hillel,
 thanx a lot hillel.
  In that case which approach is better one.
  Also my application will have some 6 or 7 languages .
Also im using modules() in my application.
So Can u plz suggest which approach is better.

cheers
selva]]></description>
		<content:encoded><![CDATA[<p>hi hillel,<br />
 thanx a lot hillel.<br />
  In that case which approach is better one.<br />
  Also my application will have some 6 or 7 languages .<br />
Also im using modules() in my application.<br />
So Can u plz suggest which approach is better.</p>
<p>cheers<br />
selva</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hillel</title>
		<link>http://hillelcoren.com/2008/09/12/resource-bundles-in-flex-wo-lots-of-extra-code/comment-page-1/#comment-515</link>
		<dc:creator><![CDATA[Hillel]]></dc:creator>
		<pubDate>Wed, 29 Apr 2009 17:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://hillelcoren.wordpress.com/?p=27#comment-515</guid>
		<description><![CDATA[Selva,

I guess using the resource manager to load the module eliminates the need for the metadata. In my example I&#039;m calling the getString method without loading a resource module which requires using the metadata tag.]]></description>
		<content:encoded><![CDATA[<p>Selva,</p>
<p>I guess using the resource manager to load the module eliminates the need for the metadata. In my example I&#8217;m calling the getString method without loading a resource module which requires using the metadata tag.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

