<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Flex4Fun</title>
	<atom:link href="http://flex4fun.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://flex4fun.com</link>
	<description>Flex4 Fun .. Flex for Fun</description>
	<lastBuildDate>Tue, 30 Nov 2010 12:05:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>Flex4 Tree openDuration and openEasingFunction</title>
		<link>http://flex4fun.com/2010/11/30/flex4-tree-openduration-and-openeasingfunction/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-tree-openduration-and-openeasingfunction/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:20 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[openDuration]]></category>
		<category><![CDATA[openEasingFunction]]></category>
		<category><![CDATA[showRoot]]></category>
		<category><![CDATA[Tree]]></category>
		<category><![CDATA[XMLList]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=552</guid>
		<description><![CDATA[Following example show Tree openDuration and openEasingFunction usage. TreeDemo1.mxml &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;!--created:Oct 24, 2010 file:TreeDemo1.mxml author:Michael --&#62; &#60;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" viewSourceURL="srcview/index.html"&#62; &#60;fx:Script&#62; &#60;![CDATA[ import mx.events.ListEvent; import mx.effects.easing.Circular; [Bindable] public var selectedNode:XML; protected function myTree_itemClickHandler(e:ListEvent):void { selectedNode=Tree(e.target).selectedItem as XML; } ]]&#62; &#60;/fx:Script&#62; &#60;fx:Declarations&#62; &#60;fx:XMLList id="treeData"&#62; &#60;node label="Mail Box"&#62; &#60;node label="Inbox"&#62; &#60;node label="Marketing"/&#62; &#60;node label="Product [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-tree-openduration-and-openeasingfunction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex4 Font Embed and blendMode</title>
		<link>http://flex4fun.com/2010/11/30/flex4-font-embed-and-blendmode/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-font-embed-and-blendmode/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:19 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[blendMode]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[VideoDisplay]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=592</guid>
		<description><![CDATA[Following simple example show how use font Embed and blendMode create a magic text . blendMode has following option add alpha difference erase hardlight invert layer lighten multiply normal overlay screen shader subtract &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;!--created:Oct 31, 2010 file:BlendExample1.mxml author:Michael --&#62; &#60;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" viewSourceURL="srcview/index.html" backgroundColor="0"&#62; &#60;s:layout&#62; &#60;s:VerticalLayout horizontalAlign="center" verticalAlign="middle"/&#62; &#60;/s:layout&#62; &#60;fx:Style&#62; @namespace [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-font-embed-and-blendmode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex4 Drag and Drop Event example</title>
		<link>http://flex4fun.com/2010/11/30/flex4-drag-and-drop-event-example/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-drag-and-drop-event-example/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:19 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[skin]]></category>
		<category><![CDATA[DragDrop]]></category>
		<category><![CDATA[dragEnabled]]></category>
		<category><![CDATA[dragEnter]]></category>
		<category><![CDATA[dragOver]]></category>
		<category><![CDATA[Group]]></category>
		<category><![CDATA[ItemRenderer]]></category>
		<category><![CDATA[skinClass]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=419</guid>
		<description><![CDATA[Much of the drag and drop functionality is the same for the Spark and MX list-based controls. However, there are a few differences please access follow page for detail Drag and drop differences between Spark and MX Following example show spark Drag and Drop Event usage. skins/MyDropSkin.mxml &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:fb="http://ns.adobe.com/flashbuilder/2009" minWidth="112" [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-drag-and-drop-event-example/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flex4 Text Label and filters (BevelFilter)</title>
		<link>http://flex4fun.com/2010/11/30/flex4-text-label-and-filters-bevelfilter/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-text-label-and-filters-bevelfilter/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:18 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[BevelFilter]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[filters]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[WetFloorFilter]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=645</guid>
		<description><![CDATA[Following simple example show Label filters usage ,First you must download this great plugins Gonta and import gonta swc same as my last post http://flex4fun.com/2010/11/22/flex4-image-reflex-wetfloorfilter/ &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;!--created:Nov 26, 2010 file:FontReflex.mxml author:Michael --&#62; &#60;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:filters="org.gonta.filters.*" backgroundColor="0" viewSourceURL="srcview/index.html"&#62; &#60;fx:Style&#62; @namespace s "library://ns.adobe.com/flex/spark"; @font-face { src: url("assets/armalite.ttf"); fontFamily: myFont; embedAsCFF:true; } s&#124;Label { [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-text-label-and-filters-bevelfilter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex4 Timer usage (change scroller position)</title>
		<link>http://flex4fun.com/2010/11/30/flex4-timer-usage-change-scroller-position-2/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-timer-usage-change-scroller-position-2/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:18 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[Scroller]]></category>
		<category><![CDATA[backgroundAlpha]]></category>
		<category><![CDATA[backgroundColor]]></category>
		<category><![CDATA[BorderContainer]]></category>
		<category><![CDATA[Group]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[Timer]]></category>
		<category><![CDATA[verticalScrollBar]]></category>
		<category><![CDATA[VideoDisplay]]></category>

		<guid isPermaLink="false">http://flex4fun.com/2010/11/04/flex4-timer-usage-change-scroller-position-2/</guid>
		<description><![CDATA[Following example show how use Timer to change scroller verticalScrollBar position. PositionChangeDemo1.mxml &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;!--created:Sep 28, 2010 file:StateDemo1.mxml author:Michael --&#62; &#60;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" backgroundColor="0" viewSourceURL="srcview/index.html"&#62; &#60;fx:Style&#62; @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; s&#124;Label { font-size:14; font-family:"Arial"; } &#60;/fx:Style&#62; &#60;fx:Script&#62; &#60;![CDATA[ import mx.events.FlexEvent; private var myTimer:Timer; protected function bc_creationCompleteHandler(event:FlexEvent):void { scroller.setStyle("verticalScrollPolicy", "off"); this.myTimer=new Timer(100); [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-timer-usage-change-scroller-position-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex4 two way data binding</title>
		<link>http://flex4fun.com/2010/11/30/flex4-two-way-data-binding/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-two-way-data-binding/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:17 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[ArrayCollection]]></category>
		<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[Flex4]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[2wayBinding]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=340</guid>
		<description><![CDATA[A two-way data binding expression generates two binding expressions, one with the given source and destination, and the other, with the source and destination reversed. Following example show how it is. books.xml &#60;?xml version="1.0" encoding="UTF-8"?&#62; &#60;bookstore&#62; &#60;book category="COOKING"&#62; &#60;title lang="en"&#62;Everyday Italian&#60;/title&#62; &#60;author&#62;Giada De Laurentiis&#60;/author&#62; &#60;year&#62;2005&#60;/year&#62; &#60;price&#62;30.00&#60;/price&#62; &#60;/book&#62; &#60;book category="CHILDREN"&#62; &#60;title lang="en"&#62;Harry Potter&#60;/title&#62; &#60;author&#62;J K. Rowling&#60;/author&#62; [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-two-way-data-binding/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flash Builder 4 Sharing file among applications</title>
		<link>http://flex4fun.com/2010/11/30/flash-builder-4-sharing-file-among-applications/</link>
		<comments>http://flex4fun.com/2010/11/30/flash-builder-4-sharing-file-among-applications/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:17 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[Linked Resources]]></category>
		<category><![CDATA[Share File]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=15</guid>
		<description><![CDATA[Typically, you do not develop a single application in isolation from all other applications. Your application shares files and assets with other applications. following step show you how to make a linking For example you have one directiry (c:\ShareThing\flex4funimage) want toshare among many application step 1: Window &#62; Preferences &#62;General &#62; Workspace &#62; Linked Resources [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flash-builder-4-sharing-file-among-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex4 PopUpManager example (change modal color and click modal close PopUp)</title>
		<link>http://flex4fun.com/2010/11/30/flex4-popupmanager-example-change-modal-color-and-click-modal-close-popup/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-popupmanager-example-change-modal-color-and-click-modal-close-popup/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:16 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flex3]]></category>
		<category><![CDATA[Modal]]></category>
		<category><![CDATA[modal-transparency-color]]></category>
		<category><![CDATA[MOUSE_DOWN_OUTSIDE]]></category>
		<category><![CDATA[PopUpManager]]></category>
		<category><![CDATA[removePopUp]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=664</guid>
		<description><![CDATA[Following example use css global setting to change modal style and use event FlexMouseEvent.MOUSE_DOWN_OUTSIDE  to close PopUp. &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" viewSourceURL="srcview/index.html"&#62; &#60;s:layout&#62; &#60;s:VerticalLayout horizontalAlign="center" verticalAlign="middle"/&#62; &#60;/s:layout&#62; &#60;fx:Style&#62; @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; global { modal-transparency: 0.8; modal-transparency-color: #746c55; modal-transparency-duration: 600; } &#60;/fx:Style&#62; &#60;fx:Script&#62; &#60;![CDATA[ import mx.events.CloseEvent; import mx.events.FlexMouseEvent; import mx.managers.PopUpManager; [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-popupmanager-example-change-modal-color-and-click-modal-close-popup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FLEX XML to Collection Part 4</title>
		<link>http://flex4fun.com/2010/11/30/flex-xml-to-collection-part-4/</link>
		<comments>http://flex4fun.com/2010/11/30/flex-xml-to-collection-part-4/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:16 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[ArrayCollection]]></category>
		<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[Flex3]]></category>
		<category><![CDATA[Flex4]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=226</guid>
		<description><![CDATA[Following example show  XML to ArrayCollection use Model Class XMLToCollection4.mxml &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" viewSourceURL="srcview/index.html"&#62; &#60;s:layout&#62; &#60;s:VerticalLayout horizontalAlign="center" verticalAlign="middle"/&#62; &#60;/s:layout&#62; &#60;fx:Script&#62; &#60;![CDATA[ import mx.collections.ArrayCollection; import mx.events.FlexEvent; [Bindable] private var myDB:ArrayCollection; protected function dg_creationCompleteHandler(event:FlexEvent):void { this.myDB=new ArrayCollection(this.myModel.product); } ]]&#62; &#60;/fx:Script&#62; &#60;fx:Declarations&#62; &#60;fx:Model id="myModel" source="assets/catalog.xml"/&#62; &#60;/fx:Declarations&#62; &#60;mx:DataGrid id="dg" dataProvider="{myDB}" creationComplete="dg_creationCompleteHandler(event)"&#62; &#60;mx:columns&#62; &#60;mx:DataGridColumn [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex-xml-to-collection-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex4 Menu Example1</title>
		<link>http://flex4fun.com/2010/11/30/flex4-menu-example1/</link>
		<comments>http://flex4fun.com/2010/11/30/flex4-menu-example1/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:05:15 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Flex4]]></category>
		<category><![CDATA[Animate]]></category>
		<category><![CDATA[ArrayCollection]]></category>
		<category><![CDATA[dataGroup]]></category>
		<category><![CDATA[depth]]></category>
		<category><![CDATA[ItemRenderer]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[postLayoutTransformOffsets]]></category>
		<category><![CDATA[Rotate3D]]></category>
		<category><![CDATA[scaleX]]></category>
		<category><![CDATA[scaleY]]></category>
		<category><![CDATA[SimpleMotionPath]]></category>
		<category><![CDATA[TransformOffsets]]></category>
		<category><![CDATA[transitions]]></category>

		<guid isPermaLink="false">http://flex4fun.com/?p=620</guid>
		<description><![CDATA[Following example show how use Rotate3D to create difference Menu. assets/menu.xml &#60;?xml version="1.0" encoding="UTF-8"?&#62; &#60;MENU&#62; &#60;menu&#62; &#60;color&#62;0x746c55&#60;/color&#62; &#60;label&#62;Menu 1&#60;/label&#62; &#60;/menu&#62; &#60;menu&#62; &#60;color&#62;0xaa7972&#60;/color&#62; &#60;label&#62;Menu 2&#60;/label&#62; &#60;/menu&#62; &#60;menu&#62; &#60;color&#62;0x1e477f&#60;/color&#62; &#60;label&#62;Menu 3&#60;/label&#62; &#60;/menu&#62; &#60;menu&#62; &#60;color&#62;0xca7500&#60;/color&#62; &#60;label&#62;Menu 4&#60;/label&#62; &#60;/menu&#62; &#60;menu&#62; &#60;color&#62;0xdbbb4c&#60;/color&#62; &#60;label&#62;Menu 5&#60;/label&#62; &#60;/menu&#62; &#60;menu&#62; &#60;color&#62;0x5a6eb5&#60;/color&#62; &#60;label&#62;Menu 6&#60;/label&#62; &#60;/menu&#62; &#60;menu&#62; &#60;color&#62;0x6a56ab&#60;/color&#62; &#60;label&#62;Menu 7&#60;/label&#62; &#60;/menu&#62; &#60;menu&#62; &#60;color&#62;0x098b71&#60;/color&#62; &#60;label&#62;Menu 8&#60;/label&#62; &#60;/menu&#62; [...]]]></description>
		<wfw:commentRss>http://flex4fun.com/2010/11/30/flex4-menu-example1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

