<?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: Open-Source Arabic Parsing v1.5</title>
	<atom:link href="http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/feed/" rel="self" type="application/rss+xml" />
	<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/</link>
	<description>IA, UX, AS, Thoughts</description>
	<lastBuildDate>Sat, 23 Apr 2011 12:51:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: xVisage</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-312</link>
		<dc:creator>xVisage</dc:creator>
		<pubDate>Sat, 05 Feb 2011 06:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-312</guid>
		<description>@Mohammed

Sure, please do :)</description>
		<content:encoded><![CDATA[<p>@Mohammed</p>
<p>Sure, please do <img src='http://ixd-consultant.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammed</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-311</link>
		<dc:creator>Mohammed</dc:creator>
		<pubDate>Wed, 26 Jan 2011 18:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-311</guid>
		<description>Thank you, I&#039;m looking forward to it.

Actually I already edited the class to fix my problem and fit my needs. I had to change some part of the code. If you are interested, I can send you my copy.</description>
		<content:encoded><![CDATA[<p>Thank you, I&#8217;m looking forward to it.</p>
<p>Actually I already edited the class to fix my problem and fit my needs. I had to change some part of the code. If you are interested, I can send you my copy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xVisage</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-308</link>
		<dc:creator>xVisage</dc:creator>
		<pubDate>Wed, 05 Jan 2011 02:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-308</guid>
		<description>@Ramin

You&#039;re most welcome, but unfortunately I did not consider Persian and Urdu in this class, but I will very soon, when I do I may contact you for testing and making sure that Persian language is in fact displaying correctly, if you don&#039;t mind of course ..
Thanks again ..

@Jochen

Sorry for such late response, glad to know you did resolve your issue ..

@Gen

AS1 version could be done definitely, I will release this one very soon ..
For the ending symbols issue, I will do my best to figure this out and release an updated version soon enough ..

@Mohammed

Thank you for your kind words, I believe that this solution actually working without embedding fonts, but it will throw many weird formatting if you use any, I&#039;ll keep you informed when this issue is resolved ..

@Erwin

Oh .. this shouldn&#039;t be happening, can you please send me an example with a sample of your text and fonts used?

@Emam

You need to embed the fonts in order to apply alpha transparency tweening ..
</description>
		<content:encoded><![CDATA[<p>@Ramin</p>
<p>You&#8217;re most welcome, but unfortunately I did not consider Persian and Urdu in this class, but I will very soon, when I do I may contact you for testing and making sure that Persian language is in fact displaying correctly, if you don&#8217;t mind of course ..<br />
Thanks again ..</p>
<p>@Jochen</p>
<p>Sorry for such late response, glad to know you did resolve your issue ..</p>
<p>@Gen</p>
<p>AS1 version could be done definitely, I will release this one very soon ..<br />
For the ending symbols issue, I will do my best to figure this out and release an updated version soon enough ..</p>
<p>@Mohammed</p>
<p>Thank you for your kind words, I believe that this solution actually working without embedding fonts, but it will throw many weird formatting if you use any, I&#8217;ll keep you informed when this issue is resolved ..</p>
<p>@Erwin</p>
<p>Oh .. this shouldn&#8217;t be happening, can you please send me an example with a sample of your text and fonts used?</p>
<p>@Emam</p>
<p>You need to embed the fonts in order to apply alpha transparency tweening ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emam</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-305</link>
		<dc:creator>Emam</dc:creator>
		<pubDate>Sat, 25 Dec 2010 13:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-305</guid>
		<description>Hi,

I have already Action script as enclosed to load data from XML as fade out.

I am using a movie object called newsMC

I have already embedded arabic font as Font 1: Arial, Arabic



The original action script is as follow.
var counter:Number = 0;
var delay:Number = 100;
var xmlData:XML = new XML();
var mainElement:XML = new XML();
newsMC.newsText._alpha = 0;

function fadeout() {
	if (newsMC.newsText._alpha = mainElement.childNodes.length) 
			counter = 0;
		newsMC.newsText.text = mainElement.childNodes[counter++].firstChild.nodeValue;	
	} else
		newsMC.newsText._alpha -= 5;
}

xmlData.ignoreWhite = true;
xmlData.onLoad = function(){
	mainElement = this.firstChild;
	setInterval(fadeout, delay);
	
}
xmlData.load(&quot;ticker.xml&quot;);

________

As I am new to flash, I have difficulty to use your script instead of that one.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have already Action script as enclosed to load data from XML as fade out.</p>
<p>I am using a movie object called newsMC</p>
<p>I have already embedded arabic font as Font 1: Arial, Arabic</p>
<p>The original action script is as follow.<br />
var counter:Number = 0;<br />
var delay:Number = 100;<br />
var xmlData:XML = new XML();<br />
var mainElement:XML = new XML();<br />
newsMC.newsText._alpha = 0;</p>
<p>function fadeout() {<br />
	if (newsMC.newsText._alpha = mainElement.childNodes.length)<br />
			counter = 0;<br />
		newsMC.newsText.text = mainElement.childNodes[counter++].firstChild.nodeValue;<br />
	} else<br />
		newsMC.newsText._alpha -= 5;<br />
}</p>
<p>xmlData.ignoreWhite = true;<br />
xmlData.onLoad = function(){<br />
	mainElement = this.firstChild;<br />
	setInterval(fadeout, delay);</p>
<p>}<br />
xmlData.load(&#8220;ticker.xml&#8221;);</p>
<p>________</p>
<p>As I am new to flash, I have difficulty to use your script instead of that one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erwin</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-304</link>
		<dc:creator>Erwin</dc:creator>
		<pubDate>Wed, 08 Dec 2010 23:32:05 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-304</guid>
		<description>Hi,

I want to say thank you for this great script, it made my life a lot easier!

But i have one problem. I have a large ammount of text in arabic, about 300 pages. It all shows correctly, except arabic numbers. In teh text the numbers are in arabic. But in the text i have the numbers are allready in the correct order, but this script puts them reversed. For exemple, 2010 becomes 0102 in the arabic text.

Is there any way to correct this?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I want to say thank you for this great script, it made my life a lot easier!</p>
<p>But i have one problem. I have a large ammount of text in arabic, about 300 pages. It all shows correctly, except arabic numbers. In teh text the numbers are in arabic. But in the text i have the numbers are allready in the correct order, but this script puts them reversed. For exemple, 2010 becomes 0102 in the arabic text.</p>
<p>Is there any way to correct this?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammed</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-303</link>
		<dc:creator>Mohammed</dc:creator>
		<pubDate>Thu, 25 Nov 2010 20:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-303</guid>
		<description>Hey there,

I just stumbled upon your Arabic Parsing class, and I have to say this is really awesome stuff !! You really made my day/month/year. Thank you so much for your effort.

I&#039;m wondering if you&#039;ll keep working to improve the rendering of text without font embedding.

Thanks again :)</description>
		<content:encoded><![CDATA[<p>Hey there,</p>
<p>I just stumbled upon your Arabic Parsing class, and I have to say this is really awesome stuff !! You really made my day/month/year. Thank you so much for your effort.</p>
<p>I&#8217;m wondering if you&#8217;ll keep working to improve the rendering of text without font embedding.</p>
<p>Thanks again <img src='http://ixd-consultant.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gen</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-302</link>
		<dc:creator>Gen</dc:creator>
		<pubDate>Wed, 24 Nov 2010 06:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-302</guid>
		<description>It appears that symbols are a problem. Inverted Commas and Brackets appear incorrectly. Full Stops and Comma&#039;s, when used at the end of a sentence, still preview on the right, instead of the left.</description>
		<content:encoded><![CDATA[<p>It appears that symbols are a problem. Inverted Commas and Brackets appear incorrectly. Full Stops and Comma&#8217;s, when used at the end of a sentence, still preview on the right, instead of the left.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gen</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-300</link>
		<dc:creator>Gen</dc:creator>
		<pubDate>Fri, 19 Nov 2010 09:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-300</guid>
		<description>First off, thank you so much for your contribution. It has really helped a lot.

Do you know of any way I can convert an AS1 file to arabic?

Thanx</description>
		<content:encoded><![CDATA[<p>First off, thank you so much for your contribution. It has really helped a lot.</p>
<p>Do you know of any way I can convert an AS1 file to arabic?</p>
<p>Thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jochen</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-299</link>
		<dc:creator>Jochen</dc:creator>
		<pubDate>Wed, 20 Oct 2010 12:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-299</guid>
		<description>OK, thanks - I solved the problem.</description>
		<content:encoded><![CDATA[<p>OK, thanks &#8211; I solved the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jochen</title>
		<link>http://ixd-consultant.com/blog/2010/07/12/open-source-arabic-parsing-v1-5/comment-page-1/#comment-298</link>
		<dc:creator>Jochen</dc:creator>
		<pubDate>Mon, 18 Oct 2010 17:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://ixd-consultant.com/blog/?p=436#comment-298</guid>
		<description>Hi there,

I tried NOT to embed the font and use a truetype font. It works fine with the font &quot;Traditional Arabic&quot; in your example! But if I use something else like &quot;Arabic Typesetting Standard&quot; or &quot;Arial Unicode MS Standard&quot; nothing shows up. What&#039;s the problem?</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I tried NOT to embed the font and use a truetype font. It works fine with the font &#8220;Traditional Arabic&#8221; in your example! But if I use something else like &#8220;Arabic Typesetting Standard&#8221; or &#8220;Arial Unicode MS Standard&#8221; nothing shows up. What&#8217;s the problem?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

