<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ponbharathi Bakthaduruvan&#039;s blog</title>
	<atom:link href="http://ponflex.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ponflex.wordpress.com</link>
	<description>Adobe Flex and AIR Examples</description>
	<lastBuildDate>Fri, 18 Sep 2009 06:20:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ponflex.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ponbharathi Bakthaduruvan&#039;s blog</title>
		<link>http://ponflex.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ponflex.wordpress.com/osd.xml" title="Ponbharathi Bakthaduruvan&#039;s blog" />
	<atom:link rel='hub' href='http://ponflex.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Loading data from remote xml file in Flex</title>
		<link>http://ponflex.wordpress.com/2009/09/18/loading-data-from-remote-xml-file-in-flex/</link>
		<comments>http://ponflex.wordpress.com/2009/09/18/loading-data-from-remote-xml-file-in-flex/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 06:12:30 +0000</pubDate>
		<dc:creator>ponflex</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://ponflex.wordpress.com/?p=28</guid>
		<description><![CDATA[You can load the data from the remote xml file using the HTTPService in Flex. To read the data from the xml file do not forget to set the resultFormat property of the HTTPService as e4x. Main.mxml &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" backgroundColor="#FFFFFF"&#62; &#60;mx:Script&#62; &#60;![CDATA[ import com.riacoder.examples.vo.EmployeeVO; import mx.collections.ArrayCollection; import mx.rpc.events.ResultEvent; import mx.rpc.events.FaultEvent; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ponflex.wordpress.com&amp;blog=6067049&amp;post=28&amp;subd=ponflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can load the data from the remote xml file using the HTTPService in Flex. To read the data from the xml file do not forget to set the resultFormat property of the HTTPService as e4x.</p>
<p><strong>Main.mxml</strong></p>
<pre style="line-height:1em;background:#d5d5d5;padding:5px;">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
	verticalAlign="middle" backgroundColor="#FFFFFF"&gt;
	&lt;mx:Script&gt;
		&lt;![CDATA[
			import com.riacoder.examples.vo.EmployeeVO;
			import mx.collections.ArrayCollection;
			import mx.rpc.events.ResultEvent;
			import mx.rpc.events.FaultEvent;
			import mx.controls.Alert;

			[Bindable]
			private var empCollection:ArrayCollection;

			public var xmlURL:String = "http://localhost:8080/flex_xml/employees.xml";

			private function loadXml():void
			{
				httpService.url = xmlURL;
				httpService.send();
			}

			private function onFault(event:FaultEvent):void
			{
				var title:String = event.type + " ("+ event.fault.faultCode +")";
				var text:String  = event.fault.faultString;
				Alert.show(text, title);
			}

			private function onResult(event:ResultEvent):void
			{
				var xmlList:XMLList = XML(event.result).children();
				empCollection = new ArrayCollection();
				for each(var obj:Object in xmlList)
				{
					var empVO:EmployeeVO = new EmployeeVO();
					empVO.fName  = obj.fname;
					empVO.lName  = obj.lname;
					empVO.uName  = obj.uname;
					empVO.gender = obj.gender;
					empVO.age    = obj.age;
					empVO.email  = obj.email;
					empVO.image  = obj.image;
					empCollection.addItem(empVO);
				}

			}
		]]&gt;
	&lt;/mx:Script&gt;

	&lt;mx:HTTPService id="httpService"
		showBusyCursor="true"
		resultFormat="e4x"
		fault="onFault(event)"
		result="onResult(event)" /&gt;

	&lt;mx:ApplicationControlBar dock="true"&gt;
		&lt;mx:Button label=&quot;Load Employees&quot; click=&quot;loadXml()&quot; /&gt;
	&lt;/mx:ApplicationControlBar&gt;

	&lt;mx:TileList id=&quot;employeeList&quot; dataProvider=&quot;{empCollection}&quot;
		itemRenderer=&quot;com.riacoder.examples.components.EmployeeRenderer&quot; columnCount=&quot;2&quot; rowCount=&quot;3&quot;
		columnWidth=&quot;350&quot; rowHeight=&quot;160&quot; color=&quot;#323232&quot;/&gt;

&lt;/mx:Application&gt;
</pre>
<p>I have created a ItemRenderer to display the employee details for this example. I have named the file as EmployeeRenderer.mxml. See the below code.</p>
<p><strong>EmployeeRenderer.mxml</strong></p>
<pre style="line-height:1em;background:#d5d5d5;padding:5px;">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" width="350" height="180"&gt;
	&lt;mx:Image source="{data.image}" width="100" height="100" verticalAlign="top" /&gt;
	&lt;mx:VBox&gt;
			&lt;mx:Label text="First Name: {data.fName}" /&gt;
			&lt;mx:Label text="Last Name: {data.lName}" /&gt;
			&lt;mx:Label text="User Name: {data.uName}" /&gt;
			&lt;mx:Label text="Gender: {data.gender}" /&gt;
			&lt;mx:Label text="Age: {data.age}" /&gt;
			&lt;mx:Label text="E-Mail Id: {data.email}" /&gt;
	&lt;/mx:VBox&gt;
&lt;/mx:HBox&gt;
</pre>
<p>I have created the ValueObject class named as EmployeeVO to keep a employee data.</p>
<p><strong>EmployeeVO.as</strong></p>
<pre style="line-height:1em;background:#d5d5d5;padding:5px;">
package com.riacoder.examples.vo
{
	[Bindable]
	public class EmployeeVO
	{
		public var fName:String;
		public var lName:String;
		public var uName:String;
		public var gender:String;
		public var age:String;
		public var email:String;
		public var image:String;
		public function EmployeeVO()
		{
		}
	}
}
</pre>
<p>Content of the xml which I have used in this example</p>
<p><strong>employees.xml</strong></p>
<pre style="line-height:1em;background:#d5d5d5;padding:5px;">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;employees&gt;
	&lt;employee&gt;
		&lt;fname&gt;Senthil Kumar&lt;/fname&gt;
		&lt;lname&gt;Ranganathan&lt;/lname&gt;
		&lt;uname&gt;senthil&lt;/uname&gt;
		&lt;gender&gt;Male&lt;/gender&gt;
		&lt;age&gt;26&lt;/age&gt;
		&lt;email&gt;senthil.friends@gmail.com&lt;/email&gt;
		&lt;image&gt;http://localhost:8080/flex_xml/images/4.png&lt;/image&gt;
	&lt;/employee&gt;
	&lt;employee&gt;
		&lt;fname&gt;Ponbharathi&lt;/fname&gt;
		&lt;lname&gt;Bakthaduruvan&lt;/lname&gt;
		&lt;uname&gt;pon&lt;/uname&gt;
		&lt;gender&gt;Male&lt;/gender&gt;
		&lt;age&gt;25&lt;/age&gt;
		&lt;email&gt;kbponbharathi@gmail.com&lt;/email&gt;
		&lt;image&gt;http://localhost:8080/flex_xml/images/5.png&lt;/image&gt;
	&lt;/employee&gt;
	&lt;employee&gt;
		&lt;fname&gt;Vinoth&lt;/fname&gt;
		&lt;lname&gt;Kumar&lt;/lname&gt;
		&lt;uname&gt;vinoth&lt;/uname&gt;
		&lt;gender&gt;Male&lt;/gender&gt;
		&lt;age&gt;27&lt;/age&gt;
		&lt;email&gt;vino.mib@gmail.com&lt;/email&gt;
		&lt;image&gt;http://localhost:8080/flex_xml/images/3.png&lt;/image&gt;
	&lt;/employee&gt;
	&lt;employee&gt;
		&lt;fname&gt;Anto&lt;/fname&gt;
		&lt;lname&gt;Robin&lt;/lname&gt;
		&lt;uname&gt;anto&lt;/uname&gt;
		&lt;gender&gt;Male&lt;/gender&gt;
		&lt;age&gt;29&lt;/age&gt;
		&lt;email&gt;anto@xyz.com&lt;/email&gt;
		&lt;image&gt;http://localhost:8080/flex_xml/images/5.png&lt;/image&gt;
	&lt;/employee&gt;
&lt;/employees&gt;
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ponflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ponflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ponflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ponflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ponflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ponflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ponflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ponflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ponflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ponflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ponflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ponflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ponflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ponflex.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ponflex.wordpress.com&amp;blog=6067049&amp;post=28&amp;subd=ponflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ponflex.wordpress.com/2009/09/18/loading-data-from-remote-xml-file-in-flex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/37bf4a3be936c62c3f8fd273b8edc8dd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ponflex</media:title>
		</media:content>
	</item>
		<item>
		<title>ProgressBar for file uploading in Flex</title>
		<link>http://ponflex.wordpress.com/2009/09/17/progressbar-for-file-uploading-in-flex/</link>
		<comments>http://ponflex.wordpress.com/2009/09/17/progressbar-for-file-uploading-in-flex/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 10:04:03 +0000</pubDate>
		<dc:creator>ponflex</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://ponflex.wordpress.com/?p=12</guid>
		<description><![CDATA[We can use the ProgessBar to monitor the File upload process in Flex. See the given example code and use the given Uploader.as FileUploadExample.mxml &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#FFFFFF"&#62; &#60;mx:Script&#62; &#60;![CDATA[ import com.riacoder.examples.Uploader; private var uploader:Uploader = new Uploader(); private function onUploadClick(event:MouseEvent):void { uploader.browseAndUpload(); } ]]&#62; &#60;/mx:Script&#62; &#60;mx:Canvas width="200" height="200" horizontalCenter="0" verticalCenter="0" backgroundColor="#525252"&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ponflex.wordpress.com&amp;blog=6067049&amp;post=12&amp;subd=ponflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We can use the ProgessBar to monitor the File upload process in Flex.<br />
See the given example code and use the given Uploader.as</p>
<p><strong>FileUploadExample.mxml</strong></p>
<pre style="line-height:1em;background:#d5d5d5;padding:5px;">

&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
	backgroundColor="#FFFFFF"&gt;

	&lt;mx:Script&gt;
		&lt;![CDATA[
			import com.riacoder.examples.Uploader;

			private var uploader:Uploader = new Uploader();

			private function onUploadClick(event:MouseEvent):void
			{
				uploader.browseAndUpload();
			}
		]]&gt;
	&lt;/mx:Script&gt;

	&lt;mx:Canvas width="200" height="200" horizontalCenter="0" verticalCenter="0" backgroundColor="#525252"&gt;
		&lt;mx:Button label="Select a file and upload" horizontalCenter="0" verticalCenter="0" click="onUploadClick(event);"/&gt;
	&lt;/mx:Canvas&gt;

&lt;/mx:Application&gt;
</pre>
<p>Use the following code to upload the file and for displaying the ProgressBar.</p>
<p><strong>Uploader.as</strong></p>
<pre style="line-height:1em;background:#d5d5d5;padding:5px;">

package com.riacoder.examples
{

	import flash.events.Event;
	import flash.events.IOErrorEvent;
	import flash.events.ProgressEvent;
	import flash.net.FileReference;
	import flash.net.URLRequest;
	import flash.net.URLRequestMethod;
	import flash.net.URLVariables;

	import mx.controls.Alert;
	import mx.controls.ProgressBar;
	import mx.core.Application;
	import mx.core.UIComponent;
	import mx.managers.PopUpManager;

	public class Uploader
	{
		// FileReference instance, used to select the file.
		private var fileReference:FileReference;	

		// ProgressBar instance, used to display the upload status.
		private var progressBar:ProgressBar;

		// String instance, used to hold the url of the upload location.
		public static const FILE_UPLOAD_URL:String = "http://localhost/test/FileUpload.php";

		// Constructor
		public function Uploader()
		{
			// Initialize the fileReference.
			fileReference = new FileReference();

			// Register the event listeners.
                       fileReference.addEventListener(Event.SELECT, onSelect);
                       fileReference.addEventListener(ProgressEvent.PROGRESS, onProgress);
                       fileReference.addEventListener(Event.COMPLETE, onComplete);
                       fileReference.addEventListener(IOErrorEvent.IO_ERROR, onIOError);

                      // Initialize the progressBar.
                     progressBar = new ProgressBar();
		}

		public function browseAndUpload():void
		{
			// open the file browser window.
			fileReference.browse();
		}

		private function onSelect(evt:Event):void
		{
	             try
	             {
	        	// used to upload the file to the specified location.
	        	var uploadURL:URLRequest = new URLRequest(FILE_UPLOAD_URL);
	        	// used to send the datas while uploading.
		        var uploadData:URLVariables = new URLVariables();
		        // specifiying the fileSize. So from server side you can get the fileSize.
			uploadData.fileSize = fileReference.size;
			// set the HTTP method.
			uploadURL.method = URLRequestMethod.POST;

			// set the progressBar mode to manual. So, you have to set the progress manually.
			progressBar.mode = "manual";
			// While starting the upload process ProgessBar's lable will be displayed as "Uploading File"
			progressBar.label = "Uploading file.";
			// Show the progressbar as popup.
			PopUpManager.addPopUp(progressBar, Application.application as UIComponent, true);
			PopUpManager.centerPopUp(progressBar);

			uploadURL.data = uploadData;
			// start to upload the file.
	               fileReference.upload(uploadURL);
	        }
	        catch (error:Error)
	        {
	        	Alert.show("Error "+error);
	        }
	    }

	    private function onIOError(event:IOErrorEvent):void
	    {
	    	PopUpManager.removePopUp(progressBar);
	    	Alert.show("Uploader::IOError-Unable to upload the file.  "+event.text);
	    }

	    private function onProgress(evt:ProgressEvent):void
	    {
	    	// Calculating the uploaded percentage.
	    	var numPerc:Number = Math.round((Number(evt.bytesLoaded) / Number(evt.bytesTotal)) * 100);
	    	// set the label of progessbar. So the user can see the uploaded percentage.
	    	progressBar.label = "Uploading file "+numPerc+"% Completed.";
	    	// set the progress value of the progressBar.
	    	progressBar.setProgress(numPerc, 100);
	    }

	    private function onComplete(evt:Event):void
	    {
	    	PopUpManager.removePopUp(progressBar);
	    }

	}
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ponflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ponflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ponflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ponflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ponflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ponflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ponflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ponflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ponflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ponflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ponflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ponflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ponflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ponflex.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ponflex.wordpress.com&amp;blog=6067049&amp;post=12&amp;subd=ponflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ponflex.wordpress.com/2009/09/17/progressbar-for-file-uploading-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/37bf4a3be936c62c3f8fd273b8edc8dd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ponflex</media:title>
		</media:content>
	</item>
		<item>
		<title>Image Loader in Flex</title>
		<link>http://ponflex.wordpress.com/2009/09/17/image-loader-in-flex/</link>
		<comments>http://ponflex.wordpress.com/2009/09/17/image-loader-in-flex/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 05:48:08 +0000</pubDate>
		<dc:creator>ponflex</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://ponflex.wordpress.com/?p=3</guid>
		<description><![CDATA[Loading Image using Loader in Flex You can load your image source using the Loader class in Flex. You should create a URLRequest with the image&#8217;s location and pass it to the Loader.load() method. For Example, imageLoader.load(new URLRequest(&#8220;image location&#8221;)); See the below example &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete(event);"&#62; &#60;mx:Script&#62; &#60;![CDATA[ import mx.events.FlexEvent; // [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ponflex.wordpress.com&amp;blog=6067049&amp;post=3&amp;subd=ponflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Loading Image using Loader in Flex</strong></p>
<p>You can load your image source using the <strong>Loader </strong>class in Flex. You should create a <strong>URLRequest </strong>with the image&#8217;s location and pass it to the <strong>Loader.load()</strong> method. For Example, imageLoader.load(new URLRequest(&#8220;image location&#8221;));</p>
<p>See the below example<br />
<code></p>
<pre style="line-height:1em;background:#d5d5d5;">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
	creationComplete="onCreationComplete(event);"&gt;

	&lt;mx:Script&gt;
		&lt;![CDATA[

			import mx.events.FlexEvent;

			// Loader instance to load the image.
			private var imageLoader:Loader;

			private function onCreationComplete(event:FlexEvent):void
			{
				// create the loader.
				imageLoader = new Loader();
				// register the complete event of imageLoader's contentLoaderInfo
				imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
				// load the image.
				loadImage("http://localhost:8080/test/images/1.jpg");
			}

			private function onLoadComplete(event:Event):void
			{
				// set the source of the image.
				image.source = event.currentTarget.content;
			}

			private function loadImage(url:String):void
			{
				// load the content from the given url.
				imageLoader.load(new URLRequest(url));

			}

		]]&gt;
	&lt;/mx:Script&gt;

	&lt;mx:Image id="image" verticalCenter="0" horizontalCenter="0"/&gt;

&lt;/mx:Application&gt;
</pre>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ponflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ponflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ponflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ponflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ponflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ponflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ponflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ponflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ponflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ponflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ponflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ponflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ponflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ponflex.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ponflex.wordpress.com&amp;blog=6067049&amp;post=3&amp;subd=ponflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ponflex.wordpress.com/2009/09/17/image-loader-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/37bf4a3be936c62c3f8fd273b8edc8dd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ponflex</media:title>
		</media:content>
	</item>
	</channel>
</rss>
