<?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: Approaches for Multi Language ActionScript 3 Websites</title>
	<atom:link href="http://www.blog.noponies.com/2009/01/approaches-for-multi-language-actionscript-3-websites/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.noponies.com/2009/01/approaches-for-multi-language-actionscript-3-websites/</link>
	<description>I want a pony for xmas! Flash, ActionScript, Drawing, Code, Illustration from New Zealand.</description>
	<lastBuildDate>Mon, 30 Aug 2010 14:49:07 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: umano</title>
		<link>http://www.blog.noponies.com/2009/01/approaches-for-multi-language-actionscript-3-websites/comment-page-1/#comment-14842</link>
		<dc:creator>umano</dc:creator>
		<pubDate>Fri, 24 Jul 2009 11:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.noponies.com/?p=125#comment-14842</guid>
		<description>Thank you dude, really, a very well written article!</description>
		<content:encoded><![CDATA[<p>Thank you dude, really, a very well written article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Burn</title>
		<link>http://www.blog.noponies.com/2009/01/approaches-for-multi-language-actionscript-3-websites/comment-page-1/#comment-7005</link>
		<dc:creator>Burn</dc:creator>
		<pubDate>Mon, 09 Feb 2009 22:23:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.noponies.com/?p=125#comment-7005</guid>
		<description>The XML didn&#039;t apper, so its 

&lt;code&gt;

 something

&lt;/code&gt;

XML:

page id=&quot;page&quot; somepage 
subpage id=&quot;subpage&quot; something /subpage
/page</description>
		<content:encoded><![CDATA[<p>The XML didn&#8217;t apper, so its </p>
<p><code></p>
<p> something</p>
<p></code></p>
<p>XML:</p>
<p>page id=&#8221;page&#8221; somepage<br />
subpage id=&#8221;subpage&#8221; something /subpage<br />
/page</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Burn</title>
		<link>http://www.blog.noponies.com/2009/01/approaches-for-multi-language-actionscript-3-websites/comment-page-1/#comment-7004</link>
		<dc:creator>Burn</dc:creator>
		<pubDate>Mon, 09 Feb 2009 22:21:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.noponies.com/?p=125#comment-7004</guid>
		<description>Hi;

In the zip (in the Singleton folder) there is third XML, italian one. From the XML it looks like you tried to deal with the deep linking by == the deep linking value and the ID . This works well, but I prefer other way. If the XML is like 


 ncsd 
 


can be used the getPathNames methods.

if the value is site.com/#/page/subpage you get them by pathNames[0] and pathNames[1]. This prevent errors like try to compair &quot;page/subpage&quot; and &quot;page/subpage&lt;b&gt;/&lt;b&gt;&quot; that are not equal.</description>
		<content:encoded><![CDATA[<p>Hi;</p>
<p>In the zip (in the Singleton folder) there is third XML, italian one. From the XML it looks like you tried to deal with the deep linking by == the deep linking value and the ID . This works well, but I prefer other way. If the XML is like </p>
<p> ncsd </p>
<p>can be used the getPathNames methods.</p>
<p>if the value is site.com/#/page/subpage you get them by pathNames[0] and pathNames[1]. This prevent errors like try to compair &#8220;page/subpage&#8221; and &#8220;page/subpage<b>/</b><b>&#8221; that are not equal.</b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale</title>
		<link>http://www.blog.noponies.com/2009/01/approaches-for-multi-language-actionscript-3-websites/comment-page-1/#comment-6355</link>
		<dc:creator>Dale</dc:creator>
		<pubDate>Mon, 19 Jan 2009 20:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.noponies.com/?p=125#comment-6355</guid>
		<description>Hi,

Yep, thats it. So long as you dispatch the languagechange event each time, or iterate over the collection of objects (if using the observer pattern example)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Yep, thats it. So long as you dispatch the languagechange event each time, or iterate over the collection of objects (if using the observer pattern example)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.blog.noponies.com/2009/01/approaches-for-multi-language-actionscript-3-websites/comment-page-1/#comment-6350</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Mon, 19 Jan 2009 16:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.noponies.com/?p=125#comment-6350</guid>
		<description>so if I need to add multiple languages, I am guessing I just add in:

private function handleLangChangeClick(event:MouseEvent): void {
			NpLoadXML.getInstance().loadNpLoadXML(&quot;xml/french.xml?nocache=&quot; + getTimer());
			NpLoadXML.getInstance().addEventListener(Event.COMPLETE, handleXMLLangChange);
			event.target.visible = false;
		}

for each different language...  Changing of coarse the xml file per se...  Is there somthing else that I am missing within the class for this to work for say 10 languages?</description>
		<content:encoded><![CDATA[<p>so if I need to add multiple languages, I am guessing I just add in:</p>
<p>private function handleLangChangeClick(event:MouseEvent): void {<br />
			NpLoadXML.getInstance().loadNpLoadXML(&#8221;xml/french.xml?nocache=&#8221; + getTimer());<br />
			NpLoadXML.getInstance().addEventListener(Event.COMPLETE, handleXMLLangChange);<br />
			event.target.visible = false;<br />
		}</p>
<p>for each different language&#8230;  Changing of coarse the xml file per se&#8230;  Is there somthing else that I am missing within the class for this to work for say 10 languages?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
