<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>JabbyPanda’s travel to RIA world</title>
	
	<link>http://www.jabbypanda.com/blog</link>
	<description>it's RIA, not Rio</description>
	<lastBuildDate>Sun, 18 Sep 2011 22:53:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jabbypanda" /><feedburner:info uri="jabbypanda" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>When  2 – 1 = 2 when doing math operations with dates in ActionScript</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/jKEdBT_du2o/</link>
		<comments>http://www.jabbypanda.com/blog/2011/09/when-2-1-when-doing-math-operations-with-dates-in-actionscript/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 14:07:04 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe Flash]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=290</guid>
		<description><![CDATA[&#160;&#160;&#160;Let’s say we have the following simple use-case: we have to create a calendar with Month view. The Month view can start on any day, it can be 1st of March, it can be 15th of March, it can be even 31th of March. &#160;&#160;&#160;So, assume that our current date range starts with 31th of [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;Let’s say we have the following simple use-case: we have to create a calendar with Month view. The Month view can start on any day, it can be 1st of March, it can be 15th of March, it can be even 31th of March.</p>
<p>&nbsp;&nbsp;&nbsp;So, assume that our current date range starts with 31th of March.  And now, what if we want to scroll the date back one month? Hah,easy, you would jump immediately with straightforward solution, just subtract  1 month from current Date.</p>
<p>&nbsp;&nbsp;&nbsp;Writing a few lines of code, doing some traces….</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> startDate : <span style="color: #0066CC;">Date</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Date</span> <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">2011</span>, <span style="color: #cc66cc;">2</span>, <span style="color: #cc66cc;">31</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> newDate : <span style="color: #0066CC;">Date</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Date</span> <span style="color: #66cc66;">&#40;</span>startDate.<span style="color: #0066CC;">time</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//displays Thu Mar 31 2011</span>
&nbsp;
<span style="color: #0066CC;">trace</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;startDate=&quot;</span>, startDate.<span style="color: #006600;">toDateString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>; 
newDate.<span style="color: #006600;">month</span>--;		
&nbsp;
<span style="color: #0066CC;">trace</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;newDate=&quot;</span>, newDate.<span style="color: #006600;">toDateString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//displays Thu Mar 3 2011</span></pre></div></div>

<p>..and wait a minute, how it is possible that 2 – 1 = 2 for new month value?</p>
<p>&nbsp;&nbsp;&nbsp;Well, the issue is that Flash Player behind the scene is fixing invalid resulting date for February month. We could not have February date with 31 days,  so somebody has to do something about it, right? </p>
<p>&nbsp;&nbsp;&nbsp;To sum up we should remember about this feature of Flash Player when dealing with invalid dates and the correct operation for subtracting 1 month from existing date can be the following:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> startDate : <span style="color: #0066CC;">Date</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Date</span> <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">2011</span>, <span style="color: #cc66cc;">2</span>, <span style="color: #cc66cc;">31</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> initNewDate : <span style="color: #0066CC;">Date</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Date</span><span style="color: #66cc66;">&#40;</span>startDate.<span style="color: #0066CC;">time</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #000000; font-weight: bold;">var</span> newDate : <span style="color: #0066CC;">Date</span>;
&nbsp;
initNewDate.<span style="color: #006600;">month</span>--;				
newDate = handleShorterMonths<span style="color: #66cc66;">&#40;</span>startDate, initNewDate, <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">trace</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;newDate=&quot;</span>, newDate.<span style="color: #006600;">toDateString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//displays Mon Feb 28 2011</span>
&nbsp;
<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> handleShorterMonths<span style="color: #66cc66;">&#40;</span>startDate : <span style="color: #0066CC;">Date</span>, dateToCheck :<span style="color: #0066CC;">Date</span>, monthIndex : <span style="color: #0066CC;">int</span><span style="color: #66cc66;">&#41;</span> : <span style="color: #0066CC;">Date</span> <span style="color: #66cc66;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">var</span> correctDate : <span style="color: #0066CC;">Date</span> = dateToCheck;
   <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>dateToCheck.<span style="color: #0066CC;">date</span> <span style="color: #66cc66;">&lt;</span> startDate.<span style="color: #0066CC;">date</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
        correctDate.<span style="color: #0066CC;">date</span> = startDate.<span style="color: #0066CC;">date</span> - dateToCheck.<span style="color: #0066CC;">date</span>;	
	correctDate.<span style="color: #006600;">month</span> = monthIndex;
   <span style="color: #66cc66;">&#125;</span>
   <span style="color: #b1b100;">return</span> correctDate; 
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>Interactive sample with view source enabled that illustrates the issue: </p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_Dates_792546201"
			class="flashmovie"
			width="700"
			height="200">
	<param name="movie" value="http://www.jabbypanda.com/labs/dateMath/Test_Dates.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/dateMath/Test_Dates.swf"
			name="fm_Test_Dates_792546201"
			width="700"
			height="200">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Alternatively, if you do not like to do Date Math operations by yourself, you can always rely on <a href="http://www.as3commons.org/as3-commons-lang/asdoc/org/as3commons/lang/DateUtils.html">As3Commons  DateUtils.as</a> class. </p>
<p>This utility class has a very well written API to do various Math operations with Dates -  you add days, months, years, etc. to existing date with an ease.</p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/jKEdBT_du2o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2011/09/when-2-1-when-doing-math-operations-with-dates-in-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2011/09/when-2-1-when-doing-math-operations-with-dates-in-actionscript/</feedburner:origLink></item>
		<item>
		<title>v.0.15 update for InputAssist component – Flex 4.5 SDK Ready!</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/WKdCdxbjVJI/</link>
		<comments>http://www.jabbypanda.com/blog/2011/05/v-0-15-update-for-inputassist-component-flex-4-5-sdk-ready/#comments</comments>
		<pubDate>Wed, 11 May 2011 11:01:40 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Adobe Flex 4]]></category>
		<category><![CDATA[Components]]></category>
		<category><![CDATA[InputAssist]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=280</guid>
		<description><![CDATA[Bugs fixed --------- [!] Fixed issue when open popup windows was not automatically closed when MouseEvent.MOUSE_WHEEL occurred somewhere outside of the component; [!] Fixed issue "Error when hit Enter in InputAssist with no dataProvider" https://github.com/JabbyPanda/InputAssist/issues/2. And the last, but not the least - InputAssist is now ready to be used in projects compiled against Flex [...]]]></description>
			<content:encoded><![CDATA[<p>Bugs fixed<br />
---------<br />
[!] Fixed issue when open popup windows was not automatically closed when MouseEvent.MOUSE_WHEEL occurred somewhere outside of the component;<br />
[!] Fixed issue "Error when hit Enter in InputAssist with no dataProvider"<br />
<a href="https://github.com/JabbyPanda/InputAssist/issues/2">https://github.com/JabbyPanda/InputAssist/issues/2</a>.</p>
<p>And the last, but not the least - <strong>InputAssist is now ready to be used in projects compiled against Flex 4.5 SDK</strong> - I just did some code trick due to the public API change in <em>MatrixUtil.getConcatenatedMatrix</em> method in Flex 4.5.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_InputAssist015_2051429621"
			class="flashmovie"
			width="600"
			height="350">
	<param name="movie" value="http://www.jabbypanda.com/labs/InputAssist/demo04/Test_InputAssist015.swf " />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/InputAssist/demo04/Test_InputAssist015.swf "
			name="fm_Test_InputAssist015_2051429621"
			width="600"
			height="350">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><br />
As always, the most recent source code of the component and compiled SWC library file is available at <a href="http://github.com/JabbyPanda/InputAssist">github.com/JabbyPanda/InputAssist</a></p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/WKdCdxbjVJI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2011/05/v-0-15-update-for-inputassist-component-flex-4-5-sdk-ready/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2011/05/v-0-15-update-for-inputassist-component-flex-4-5-sdk-ready/</feedburner:origLink></item>
		<item>
		<title>Preview of MaskedTextInput control for Flex 4 SDK</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/WobUgrf3jsQ/</link>
		<comments>http://www.jabbypanda.com/blog/2011/04/preview-of-maskedtextinput-control-for-flex-4-sdk/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 14:04:00 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Adobe Flex 4]]></category>
		<category><![CDATA[Components]]></category>
		<category><![CDATA[AdobeFlex4]]></category>
		<category><![CDATA[MaskedTextInput]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=268</guid>
		<description><![CDATA[&#160;&#160;&#160;Long time, no see! &#160;&#160;&#160;My hands are scratching today to show you a preview of MaskedTextInput control for Flex 4 SDK that I've been working on. &#160;&#160;&#160;Currently only date mask in format "DD/MM/YY" is supported, but more to come. &#160;&#160;&#160;The last, but not the least announcement for today - I plan to create MaskedTextInput control [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;Long time, no see!</p>
<p>&nbsp;&nbsp;&nbsp;My hands are scratching today to show you a preview of MaskedTextInput control for Flex 4 SDK that I've been working on. </p>
<p>&nbsp;&nbsp;&nbsp;Currently only date mask in format "DD/MM/YY" is supported, but more to come. <img src='http://www.jabbypanda.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>&nbsp;&nbsp;&nbsp;The last, but not the least announcement for today -  I plan to create MaskedTextInput control that will be independent of Flex SDK too for all Flash platform developers to benefit from!</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_MaskedTextInput_1731981904"
			class="flashmovie"
			width="400"
			height="400">
	<param name="movie" value="http://www.jabbypanda.com/labs/maskedTextInputPreview/Test_MaskedTextInput.swf " />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/maskedTextInputPreview/Test_MaskedTextInput.swf "
			name="fm_Test_MaskedTextInput_1731981904"
			width="400"
			height="400">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/WobUgrf3jsQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2011/04/preview-of-maskedtextinput-control-for-flex-4-sdk/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2011/04/preview-of-maskedtextinput-control-for-flex-4-sdk/</feedburner:origLink></item>
		<item>
		<title>December v.0.14 update for InputAssist component</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/3HjFRNX4dms/</link>
		<comments>http://www.jabbypanda.com/blog/2010/12/december-v-0-14-update-for-inputassist-component/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 17:23:59 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[InputAssist]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=229</guid>
		<description><![CDATA[Looks like I got into the fashion of monthly updates for InputAssist UI component. Please welcome the last update for InputAssist component in 2010 year! Bugs fixed --------- [!] Fixed issue when adding/removing dynamically items to dataProvider did not reflect in visual updating of the component; [!] selectedItem cannot be set to the value that [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like I got into the fashion of monthly updates for InputAssist UI component.</p>
<p>Please welcome the last update for InputAssist component in 2010 year!</p>
<p>Bugs fixed<br />
---------<br />
[!] Fixed issue when adding/removing dynamically items to dataProvider did not reflect in visual updating of the component;</p>
<p>[!] selectedItem cannot be set to the value that is not present in dataProvider;</p>
<p>[!] Setting "prompt dynamically does not reset displayedText;</p>
<p>[!] Updating the position of popUp with data items every time when available data list shrinks/expands;</p>
<p>Demo that illustrates correct behaviour:<br />

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_InputAssist014_792697557"
			class="flashmovie"
			width="500"
			height="250">
	<param name="movie" value="http://www.jabbypanda.com/labs/InputAssist/demo03/Test_InputAssist014.swf " />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/InputAssist/demo03/Test_InputAssist014.swf "
			name="fm_Test_InputAssist014_792697557"
			width="500"
			height="250">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>internal API changes<br />
------------<br />
[*] private property _collection is now typed as ListCollectionView;</p>
<p>[*] Replaced internal HighlightItemListEvent.ITEM_CLICK event with ItemClickEvent.ITEM_CLICK event;</p>
<p>As always, the most recent source code of the component and compiled SWC library file is available at <a href="http://github.com/JabbyPanda/InputAssist">github.com/JabbyPanda/InputAssist</a></p>
<p>I wish you all Happy New 2011 year for the Flash Platform!</p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/3HjFRNX4dms" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2010/12/december-v-0-14-update-for-inputassist-component/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2010/12/december-v-0-14-update-for-inputassist-component/</feedburner:origLink></item>
		<item>
		<title>DateField4 component for Flex 4 SDK</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/ghFpcdGcDJI/</link>
		<comments>http://www.jabbypanda.com/blog/2010/12/datefield4-component-for-flex-4-sdk/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 16:46:13 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Adobe Flex 4]]></category>
		<category><![CDATA[Components]]></category>
		<category><![CDATA[DateField4]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=213</guid>
		<description><![CDATA[&#160;&#160;&#160;As we all know, a current Flex 4 SDK does not include a new Spark DateField control. And an older 'halo' DateField component is left abandoned somewhere in 2008 year. This leaves the users of Flex SDK with simply no choice available out of the box to support the entry of formatted date data entry [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;As we all know, a current Flex 4 SDK does not include a new Spark DateField control. And  an older 'halo' DateField component is left abandoned somewhere in 2008 year. This leaves the users of Flex SDK with simply no choice available out of the box to support the entry of formatted date data entry in standard international date formats.</p>
<p>&nbsp;&nbsp;&nbsp;Thus, today I am releasing my open-sourced component DateField4 that fixes a number of bugs and issues related to international dates and inline date editing. </p>
<p>&nbsp;&nbsp;&nbsp;I've named my component <u>DateField4</u>, to emphasize the fact that this component is only meant to be used with Flex 4 SDK and beyond.</p>
<p>&nbsp;&nbsp;&nbsp;Below is the demo that showcases the difference between DateField4 and 'halo' DateField. </p>
<p>&nbsp;&nbsp;&nbsp;For example, you may notice, that 'halo' DateField does not support neither French nor Italian international date formatting even to display the date, oouch.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_DateField4_541896627"
			class="flashmovie"
			width="650"
			height="450">
	<param name="movie" value="http://www.jabbypanda.com/labs/DateField4/demo01/Test_DateField4.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/DateField4/demo01/Test_DateField4.swf"
			name="fm_Test_DateField4_541896627"
			width="650"
			height="450">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><br />
&nbsp;&nbsp;&nbsp;<font size="2"><em>This demo was compiled using newest build of Flex 4.5 SDK to showcase a new Spark Form (good news - we are no longer limited to display validation errors in single tooltip).</em></font></p>
<p>&nbsp;&nbsp;&nbsp;The complete list of new features and bug-list fixes:</p>
<p>[*] Always enabled much improved custom validator for editable DateField that fully supports i18n dates;</p>
<p>[*] Limiting the data entry to "allowedFormatChars" value + numeric chars for editable DateField;</p>
<p>[*] Added "autoShowDropDown" property that controls when dropDown DateChooser menu is displayed;</p>
<p>[*] Pressing ESCAPE key resets the date selection to the previous value before DateField control had obtained a focus;</p>
<p>[*] Improved keyboard navigation for dropDown DateChooser menu when DateField is editable: RIGHT, LEFT, UP, DOWN, PAGE_UP, PAGE_DOWN key strokes are supported;</p>
<p>[!] Fixed <a href="https://bugs.adobe.com/jira/browse/SDK-23069">SDK-23069 </a> [Localization]: DateFormatter.parseDateString does not support non-latin characters in month and days names;</p>
<p>[!] Fixed <a href="https://bugs.adobe.com/jira/browse/SDK-23075">SDK-23075</a> "[Localization]: DateField should support "MMM" and "MMMM" for formatString";</p>
<p>[!] Fixed <a href="https://bugs.adobe.com/jira/browse/SDK-26715">SDK-26715</a> "DateFormatter "parseDateString" method cannot parse dateString value formatted with non default en_US format";</p>
<p>[!] Default width of DateField is wider by 4px to correctly display selected Date when moving cursor caret to the end of the text.</p>
<p>Public Git URL for this project is: <a href="https://github.com/JabbyPanda/DateField4">https://github.com/JabbyPanda/DateField4</a></p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/ghFpcdGcDJI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2010/12/datefield4-component-for-flex-4-sdk/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2010/12/datefield4-component-for-flex-4-sdk/</feedburner:origLink></item>
		<item>
		<title>InputAssist is updated to 0.13 release</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/E06k3ON2qCU/</link>
		<comments>http://www.jabbypanda.com/blog/2010/11/inputassist-is-updated-to-0-13-release/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 16:40:00 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[InputAssist]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=210</guid>
		<description><![CDATA[&#160;&#160;&#160;The 0.13 version does not contain a lot of new exciting features, the main focus of this version was to fix a couple of not so crucial bugs and to make sure that we will not have possible memory leaks when adding/removing InputAssist component to the DisplayList. The only "new" feature is that InputAssist now [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;The 0.13 version does not contain a lot of new exciting features, the main focus of this version was to fix a couple of not so crucial bugs and to make sure that we will not have possible memory leaks when adding/removing InputAssist component to the DisplayList.</p>
<p>The only "new" feature is that InputAssist now supports dataProvider typed as ArrayList.</p>
<p>&nbsp;&nbsp;&nbsp; Here is the full changelist for this release:</p>
<p>[!] Fixed issue with resetting visible "prompt" value when changing dataProvider<br />
[!] Fixed issue by keyboard navigation by the help of Keyboard.UP and Keyboard.DOWN buttons<br />
within option list if option list was closed and reopened.<br />
[!] Items that had "-" or "+" symbols in its labels were not properly filtered<br />
[!] Creating complete copy of passed ArrayCollection into dataProvider to avoid filtering of the original data source<br />
[!] Fixed RTE when using InputAssist control within Adobe AIR app in "onFlexWindowActivate" event listener<br />
[!] Started to use weak references when adding event listeners to avoid possible memory leaks<br />
[!] "dataProvider" property now accepts data list typed as ArrayList.</p>
<p>As always, the most recent source code of the component and compiled SWC library file is available at <a href="https://github.com/JabbyPanda/InputAssist">GitHub</a></p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/E06k3ON2qCU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2010/11/inputassist-is-updated-to-0-13-release/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2010/11/inputassist-is-updated-to-0-13-release/</feedburner:origLink></item>
		<item>
		<title>InputAssist control is updated to 0.12 release</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/jXADrixKvKo/</link>
		<comments>http://www.jabbypanda.com/blog/2010/10/inputassist-control-is-updated-to-0-12-release/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 15:11:35 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[InputAssist]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=186</guid>
		<description><![CDATA[As always the latest source code and SWC file can be downloaded from GitHub:http://github.com/JabbyPanda/InputAssist Short description of new features: "processing" property &#160;&#160;&#160;Quite often the long data list is being loaded into InputAssist control asynchronously from remote destinations. Now InputAssist is able to display "hourGlass" icon during the data loading process by controlling "processing" property. "errorMessage" [...]]]></description>
			<content:encoded><![CDATA[<p>As always the latest source code and SWC file can be downloaded from GitHub:<a href="http://github.com/JabbyPanda/InputAssist">http://github.com/JabbyPanda/InputAssist</a></p>
<p>Short description of new features:</p>
<p><em><strong>"processing"</strong> property</em><br />
&nbsp;&nbsp;&nbsp;Quite often the long data list is being loaded into InputAssist control asynchronously from remote destinations. Now InputAssist is able to display "hourGlass" icon during the data loading process by controlling "processing" property.</p>
<p><em><strong>"errorMessage"</strong> property </em><br />
&nbsp;&nbsp;&nbsp; If InputAssist's dataProvider is currently empty, then there is nothing to be chosen from.  Displaying "errorMessage" text and disabling the control gives the user the right UI feedback about the component state.</p>
<p><em><strong>"prompt"</strong> property </em><br />
&nbsp;&nbsp;&nbsp;If no value is not selected yet via InputAssist control, the control can display text specified by the "prompt" value to explain what action is expected to be taken from the user side. </p>
<p>&nbsp;&nbsp;&nbsp;Alternative usage of "prompt" property that I can think of -  is to display the <em>suppossedly</em> selected current data object label which is not present in the InputAssist's dataProvider list == e.g. this selected data object is not valid and should be altered by the further user action.</p>
<p>And yes, sorry about long time delay to retrieve city list in the demo below, it is not a component fault, but long service time response from <a href="http://api.business.gov/geodata/city_data_for_state_of/ca.xml">api.business.gov</a></p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_InputAssistAsyncXML_180102392"
			class="flashmovie"
			width="550"
			height="350">
	<param name="movie" value="http://www.jabbypanda.com/labs/InputAssist/demo02/Test_InputAssistAsyncXML.swf?id=3" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/InputAssist/demo02/Test_InputAssistAsyncXML.swf?id=3"
			name="fm_Test_InputAssistAsyncXML_180102392"
			width="550"
			height="350">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Changelog for 0.12 release:<br />
[+] Added property "prompt"<br />
[+] Added property "errorMessage"<br />
[+] Added property "processing"</p>
<p>[!] Fixed issue with dispatching InputAssistEvent.CHANGE event for nullable selectedItem<br />
[!] Fixed issue with auto-completion by hitting ENTER key</p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/jXADrixKvKo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2010/10/inputassist-control-is-updated-to-0-12-release/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2010/10/inputassist-control-is-updated-to-0-12-release/</feedburner:origLink></item>
		<item>
		<title>Flex 4 AutoComplete is now known as InputAssist, announcing 0.1 release</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/KaQT9o2Ouh8/</link>
		<comments>http://www.jabbypanda.com/blog/2010/09/flex-4-autocomplete-is-now-known-as-inputassist-announcing-0-1-release/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 13:54:04 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[InputAssist]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=169</guid>
		<description><![CDATA[The source code will be permanently available at GitHub (yes, new kid in the block instead of Google Code or SourceForge). http://github.com/JabbyPanda/InputAssist/ Demo: 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_InputAssist_1586984572"
			class="flashmovie"
			width="600"
			height="300">
	<param name="movie" value="http://jabbypanda.com/labs/InputAssist/demo01/Test_InputAssist.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://jabbypanda.com/labs/InputAssist/demo01/Test_InputAssist.swf"
			name="fm_Test_InputAssist_1586984572"
			width="600"
			height="300">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Changelog for 0.1 release: [+] Added style "highlightBackgroundColor" to InputAssist [+] Added Ant build script [+] Packaged as SWC library [*] Changed classes [...]]]></description>
			<content:encoded><![CDATA[<p>The source code will be permanently available at GitHub (yes, new kid in the block instead of Google Code or SourceForge).</p>
<p><a href="http://github.com/JabbyPanda/InputAssist/">http://github.com/JabbyPanda/InputAssist/</a></p>
<p>Demo:<br />

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_InputAssist_580123951"
			class="flashmovie"
			width="600"
			height="300">
	<param name="movie" value="http://jabbypanda.com/labs/InputAssist/demo01/Test_InputAssist.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://jabbypanda.com/labs/InputAssist/demo01/Test_InputAssist.swf"
			name="fm_Test_InputAssist_580123951"
			width="600"
			height="300">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Changelog for 0.1 release: </p>
<p>[+] Added style "highlightBackgroundColor" to InputAssist<br />
[+] Added Ant build script<br />
[+] Packaged as SWC library</p>
<p>[*] Changed classes namespace to match industry standard<br />
[*] Changed the algorithm for the highlighting of matched text segments, thankfully to<br />
 <a href="http://kachurovskiy.com">Maxim Kachurovsky</a> "Slov v sapogah" for an idea</p>
<p>[!] Fixed the appearance of popup list when "forceAuto" option is on and<br />
system focus is moved back and forth between 2 different instances of FocusManager class.</p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/KaQT9o2Ouh8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2010/09/flex-4-autocomplete-is-now-known-as-inputassist-announcing-0-1-release/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2010/09/flex-4-autocomplete-is-now-known-as-inputassist-announcing-0-1-release/</feedburner:origLink></item>
		<item>
		<title>Should my Flex 4 AutoComplete to be renamed as InputAssist?</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/5gaQB1BGw08/</link>
		<comments>http://www.jabbypanda.com/blog/2010/08/should-my-flex-4-autocomplete-to-be-renamed-as-inputassist/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 16:18:55 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[InputAssist]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=148</guid>
		<description><![CDATA[I am currently in a process of updating the code for the component previously known as "Flex 4 AutoComplete component with text highlighting". This process get me a chance to think a little bit about component branding. What I've recently had learned that AutoComplete is a very common name for the component with such a [...]]]></description>
			<content:encoded><![CDATA[<p>   I am currently in a process of updating the code for the component previously known as <a href="http://www.jabbypanda.com/blog/?p=110">"Flex 4 AutoComplete component with text highlighting"</a>.</p>
<p>   This process get me a chance to think a little bit about component branding.</p>
<p>   What I've recently had learned that <em>AutoComplete</em> is a very common name for the component with such a functionality. </p>
<p>     I know, at least, 4 different Flash platform contenders, all of them use "<em>AutoComplete</em>" word in its name:</p>
<ol>
<li> com.adobe.flex.extras.controls.AutoComplete control written for Flex 2;</li>
<li> Flextras commercial component <a href="http://www.flextras.com/?event=ProductHome&amp;productID=10">AutoCompleteComboBox</a>;</li>
<li>Hillel Coren's <a href="http://hillelcoren.com/flex-autocomplete/">AutoComplete </a> control; </li>
<li>And the last, but not least, the  Flex 4 AutoComplete component written by Tenger Ivan.</li>
</ol>
<p>      While <strong>"AutoComplete"</strong> is a very strong brand and it is well known to the end users, I'd like to bring into  Flex components naming world more creativity.</p>
<p>   What if I will rename <em>AutoComplete</em> control to <em>InputAssist</em>? You see, my component not only "auto-completes", it is also providing an helping hand to faster select the value in need from the list of options.</p>
<p>    So, in general, what do you think of <em>InputAssist</em> name?</p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/5gaQB1BGw08" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2010/08/should-my-flex-4-autocomplete-to-be-renamed-as-inputassist/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2010/08/should-my-flex-4-autocomplete-to-be-renamed-as-inputassist/</feedburner:origLink></item>
		<item>
		<title>FTE cannot display Thai characters under Windows XP English using default set of device fonts</title>
		<link>http://feedproxy.google.com/~r/jabbypanda/~3/HpXtHPZJjFI/</link>
		<comments>http://www.jabbypanda.com/blog/2010/05/fte-cannot-display-thai-characters-under-windows-xp-english-using-default-set-of-device-fonts/#comments</comments>
		<pubDate>Wed, 05 May 2010 16:06:41 +0000</pubDate>
		<dc:creator>JabbyPanda</dc:creator>
				<category><![CDATA[Adobe Flex 4]]></category>
		<category><![CDATA[Flash Text Engine]]></category>
		<category><![CDATA[Internationalization]]></category>
		<category><![CDATA[Localization]]></category>

		<guid isPermaLink="false">http://www.jabbypanda.com/blog/?p=132</guid>
		<description><![CDATA[&#160;&#160;&#160;Are you unlucky user of Windows XP English with clean install? &#160;&#160;&#160;If yes, then probably you cannot see Thai characters in Spark text components (e.g Spark Label) in the following demo: 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_Thai_L18n_1494142790"
			class="flashmovie"
			width="600"
			height="400">
	<param name="movie" value="http://www.jabbypanda.com/labs/FTEThaiFont/Test_Thai_L18n.swf " />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/FTEThaiFont/Test_Thai_L18n.swf "
			name="fm_Test_Thai_L18n_1494142790"
			width="600"
			height="400">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> Code listing: http://gist.github.com/390993 &#160;&#160;&#160; New Flex Spark Label to display text uses the new Flash [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;Are you unlucky user of Windows XP English with clean install?  </p>
<p>&nbsp;&nbsp;&nbsp;If yes, then probably you cannot see Thai characters in Spark text components (e.g Spark Label) in the following demo:</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Test_Thai_L18n_2041567894"
			class="flashmovie"
			width="600"
			height="400">
	<param name="movie" value="http://www.jabbypanda.com/labs/FTEThaiFont/Test_Thai_L18n.swf " />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.jabbypanda.com/labs/FTEThaiFont/Test_Thai_L18n.swf "
			name="fm_Test_Thai_L18n_2041567894"
			width="600"
			height="400">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Code listing: <a href="http://gist.github.com/390993">http://gist.github.com/390993</a></p>
<p>&nbsp;&nbsp;&nbsp; New Flex Spark Label to display text uses the new Flash Text Engine (FTE) introduced in Flash Player 10. And that's true, FTE brought many very useful new features (text subscript,  bidirectional text to name a few) that were previously impossible to achieve with older <em>flash.text.TextField</em> object, but I've learned recently that FTE can fail to display Thai characters under Windows XP clean install.</p>
<p>&nbsp;&nbsp;&nbsp;Eric Y Muller explains the technical details at <a href="http://forums.adobe.com/thread/613825?tstart=0">Adobe forums:</a>, why FTE cannot use neither <em>Tahoma</em> nor <em>Microsoft Sans Serif</em> standard Windows XP fonts as device fallback to display Thai characters.</p>
<p>&nbsp;&nbsp;&nbsp;The only workaround for this issue for the frustrated user would be to <a href="http://www.jutiphan.com/Articles/MakeWindowsXPThaiSupported/tabid/83/Default.aspx">insert original CD</a> with Windows XP install and install Thai language support using "Regional and Language Options" control panel. But this would impossible to achieve for the anonymous employee that works for trans-global corporation without admin access account %-)</p>
<p>&nbsp;&nbsp;&nbsp;As for the developer of the Flash application we can always embed font into Flash app that contains Thai characters, but this will impact the overall bytesize of the resulting SWF file.</p>
<p>ps<br />
&nbsp;&nbsp;&nbsp;In 2010, Windows XP remains highly relevant OS.  Various stat counters show that <a href="http://en.wikipedia.org/wiki/Usage_share_of_operating_systems">52%</a> -<a href="http://www.netmarketshare.com/os-market-share.aspx?qprid=11"> 64%</a> computer users use Windows XP. Thus it is very important for any Flash application to play nice under this OS without an hassle.</p>
<img src="http://feeds.feedburner.com/~r/jabbypanda/~4/HpXtHPZJjFI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jabbypanda.com/blog/2010/05/fte-cannot-display-thai-characters-under-windows-xp-english-using-default-set-of-device-fonts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.jabbypanda.com/blog/2010/05/fte-cannot-display-thai-characters-under-windows-xp-english-using-default-set-of-device-fonts/</feedburner:origLink></item>
	</channel>
</rss>

