<?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: Component &#124; FlexSpellCheck with source code</title>
	<atom:link href="http://www.flashenabledblog.com/2008/04/02/component-flexspellcheck-with-source-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashenabledblog.com/2008/04/02/component-flexspellcheck-with-source-code/</link>
	<description>A Blog covering Air, Flash, Flex, Illustrator and Photoshop</description>
	<lastBuildDate>Sun, 11 Sep 2011 02:17:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Eric</title>
		<link>http://www.flashenabledblog.com/2008/04/02/component-flexspellcheck-with-source-code/comment-page-1/#comment-859</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 16 Jul 2009 17:29:43 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/?p=900#comment-859</guid>
		<description>I have developed a very similar product using the same google api. The only problem is the cross-domain policy, which will not allow it to access the google domain. I am trying to accomplish this directly with actionscript.  Let me elaborate... With flash 9 as3 the current domain is where your browser opens your swf files. If one of the actionscipts tries to open another domain, which would be google then a security error occur. #2048. I have yet to find a way around this. Attempted to use a cross-domain policy file and even tried to set the security.allowDomain(&#039;*&#039;). My component works fine when I use the internal browser of the application I am designing flash. It will not work in IE or FireFox.
Not sure if you have come across this problem. or this is why your demo is not working. Let me know if you any additional comments.</description>
		<content:encoded><![CDATA[<p>I have developed a very similar product using the same google api. The only problem is the cross-domain policy, which will not allow it to access the google domain. I am trying to accomplish this directly with actionscript.  Let me elaborate&#8230; With flash 9 as3 the current domain is where your browser opens your swf files. If one of the actionscipts tries to open another domain, which would be google then a security error occur. #2048. I have yet to find a way around this. Attempted to use a cross-domain policy file and even tried to set the security.allowDomain(&#8216;*&#8217;). My component works fine when I use the internal browser of the application I am designing flash. It will not work in IE or FireFox.<br />
Not sure if you have come across this problem. or this is why your demo is not working. Let me know if you any additional comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mpulido</title>
		<link>http://www.flashenabledblog.com/2008/04/02/component-flexspellcheck-with-source-code/comment-page-1/#comment-858</link>
		<dc:creator>mpulido</dc:creator>
		<pubDate>Mon, 09 Mar 2009 16:22:50 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/?p=900#comment-858</guid>
		<description>Same problem happends to me... always &quot;no error found&quot; instead of check wrong words</description>
		<content:encoded><![CDATA[<p>Same problem happends to me&#8230; always &#8220;no error found&#8221; instead of check wrong words</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ram</title>
		<link>http://www.flashenabledblog.com/2008/04/02/component-flexspellcheck-with-source-code/comment-page-1/#comment-857</link>
		<dc:creator>ram</dc:creator>
		<pubDate>Tue, 11 Nov 2008 22:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/?p=900#comment-857</guid>
		<description>Hello Everyone.
i am new to flex development.I am trying to make the simple application to check the spelling. i downloaded this example and zip file . I am running this application on the flex builder 3.0.
when i try to run it, it opens on the browser but when i tried to check the spelling it gave me “no error found ” even the words spelling are wrong.
i followed the documentation but couln’t resolve it .
plez help me out ..
thanks in advanced.

thanks

this is my simple program :</description>
		<content:encoded><![CDATA[<p>Hello Everyone.<br />
i am new to flex development.I am trying to make the simple application to check the spelling. i downloaded this example and zip file . I am running this application on the flex builder 3.0.<br />
when i try to run it, it opens on the browser but when i tried to check the spelling it gave me “no error found ” even the words spelling are wrong.<br />
i followed the documentation but couln’t resolve it .<br />
plez help me out ..<br />
thanks in advanced.</p>
<p>thanks</p>
<p>this is my simple program :</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Campbell</title>
		<link>http://www.flashenabledblog.com/2008/04/02/component-flexspellcheck-with-source-code/comment-page-1/#comment-856</link>
		<dc:creator>Campbell</dc:creator>
		<pubDate>Wed, 02 Apr 2008 23:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/?p=900#comment-856</guid>
		<description>Nice dude... Well done!

Just a few points.

For the number of errors label try
label.text = numberOfErrors.toString() + &quot;Error&quot; + (numberOfErrors != 1)? &quot;&quot; : &quot;s&quot;;

Which should get the label reading right, ie &quot;1 error&quot; or &quot;3 Errors&quot;.

And are you using the PopUpManager to pop the list of possible spelling changes up? I noticed a depth issue where the list was under the &quot;check spelling&quot; button. If you look into the PopUpButton class in the mx.controls there is some code showing how the Adobe peeps did it.

Just ideas for you to make it better and help with the Derby entry :)

Cheers

Cam</description>
		<content:encoded><![CDATA[<p>Nice dude&#8230; Well done!</p>
<p>Just a few points.</p>
<p>For the number of errors label try<br />
label.text = numberOfErrors.toString() + &#8220;Error&#8221; + (numberOfErrors != 1)? &#8220;&#8221; : &#8220;s&#8221;;</p>
<p>Which should get the label reading right, ie &#8220;1 error&#8221; or &#8220;3 Errors&#8221;.</p>
<p>And are you using the PopUpManager to pop the list of possible spelling changes up? I noticed a depth issue where the list was under the &#8220;check spelling&#8221; button. If you look into the PopUpButton class in the mx.controls there is some code showing how the Adobe peeps did it.</p>
<p>Just ideas for you to make it better and help with the Derby entry <img src='http://www.flashenabledblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers</p>
<p>Cam</p>
]]></content:encoded>
	</item>
</channel>
</rss>

