<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Balázs Sebestény's Blog &#187; actionscript</title>
	<atom:link href="http://balazs.sebesteny.com/category/actionscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://balazs.sebesteny.com</link>
	<description>flash and flex developer</description>
	<pubDate>Tue, 08 Dec 2009 23:56:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>DataGridEvent.ITEM_EDIT_END</title>
		<link>http://balazs.sebesteny.com/datagrideventitem_edit_end/</link>
		<comments>http://balazs.sebesteny.com/datagrideventitem_edit_end/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:55:07 +0000</pubDate>
		<dc:creator>sebi</dc:creator>
		
		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[DataGrid]]></category>

		<category><![CDATA[event]]></category>

		<category><![CDATA[priority]]></category>

		<guid isPermaLink="false">http://balazs.sebesteny.com/?p=474</guid>
		<description><![CDATA[Just a quick note. I had to validate the sum of a DataGrid column after the user enters some quantities. The solution seemed to be obvious, but needs some tricking.

My first thought was create an event handler for the DataGridEvent.ITEM_EDIT_END event of the DataGrid, calculate the sum, and bind the enabled state of the Submit [...]]]></description>
		<wfw:commentRss>http://balazs.sebesteny.com/datagrideventitem_edit_end/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AMFPHP ByteArray encoding issue</title>
		<link>http://balazs.sebesteny.com/amfphp-bytearray-encoding-issue/</link>
		<comments>http://balazs.sebesteny.com/amfphp-bytearray-encoding-issue/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 02:42:31 +0000</pubDate>
		<dc:creator>sebi</dc:creator>
		
		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[flash]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[amfphp]]></category>

		<category><![CDATA[ByteArray]]></category>

		<category><![CDATA[encoding]]></category>

		<guid isPermaLink="false">http://balazs.sebesteny.com/?p=382</guid>
		<description><![CDATA[Todays lesson about AMFPHP and ByteArrays.
Let me share some experience about sending ByteArrays to AMFPHP, store them in BLOB fields in MySQL, and after send them back to a Flash client.

Last week I start to develop some funny application, which includes to open image files, crop some part of it, store it in some backend, [...]]]></description>
		<wfw:commentRss>http://balazs.sebesteny.com/amfphp-bytearray-encoding-issue/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Multiple views of data per dataprovider</title>
		<link>http://balazs.sebesteny.com/multiple-views-of-data-per-dataprovider/</link>
		<comments>http://balazs.sebesteny.com/multiple-views-of-data-per-dataprovider/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 04:14:19 +0000</pubDate>
		<dc:creator>sebi</dc:creator>
		
		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[filterFunction]]></category>

		<category><![CDATA[ListCollectionView]]></category>

		<category><![CDATA[sort]]></category>

		<guid isPermaLink="false">http://balazs.sebesteny.com/?p=379</guid>
		<description><![CDATA[Have you ever have troubles with filtering or sorting an ArrayCollection into two different controls? I wanted to keep the central data source for the different views, it has many advantages. If a new item appears in your original ArrayCollection, it will added to all views, for example.

If you show the same ArrayCollection in two [...]]]></description>
		<wfw:commentRss>http://balazs.sebesteny.com/multiple-views-of-data-per-dataprovider/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Delegates in AS3</title>
		<link>http://balazs.sebesteny.com/delegates-in-as3/</link>
		<comments>http://balazs.sebesteny.com/delegates-in-as3/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 03:31:08 +0000</pubDate>
		<dc:creator>sebi</dc:creator>
		
		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[delegate]]></category>

		<category><![CDATA[filterFunction]]></category>

		<guid isPermaLink="false">http://balazs.sebesteny.com/?p=368</guid>
		<description><![CDATA[Maybe you saw a few implementation of delegation in as3. I saw. But as as the changes in as3 made the traditional usage of the Delegate class unnecessary, you could wonder, where to use it.

I show you, where I found the delegation very useful. One word, filterFunction. The ArrayCollection class has this property, you can [...]]]></description>
		<wfw:commentRss>http://balazs.sebesteny.com/delegates-in-as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom event trick</title>
		<link>http://balazs.sebesteny.com/custom-event-trick/</link>
		<comments>http://balazs.sebesteny.com/custom-event-trick/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 03:34:14 +0000</pubDate>
		<dc:creator>sebi</dc:creator>
		
		<category><![CDATA[actionscript]]></category>

		<guid isPermaLink="false">http://balazs.sebesteny.com/?p=369</guid>
		<description><![CDATA[I learned some neat trick about custom events. We all need to use custom events in the applications. The usual way is to pass the custom property in the constructor of the event, like


public function DefaultCustomEvent&#40;type:String, stringParameter:String, bubbles:Boolean=false, cancelable:Boolean=false&#41;
&#123;
	super&#40;type, bubbles, cancelable&#41;;
	this.stringParameter = stringParameter
&#125;

That&#8217;s ok, now imagine you used that event through your gigantic application, through [...]]]></description>
		<wfw:commentRss>http://balazs.sebesteny.com/custom-event-trick/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
