<?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>in:flex Blog</title>
	<atom:link href="http://myflex.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://myflex.wordpress.com</link>
	<description>components and thoughts on Flex</description>
	<lastBuildDate>Sun, 20 Dec 2009 17:05:55 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='myflex.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/34276527e249e6e54775099ea97f289b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>in:flex Blog</title>
		<link>http://myflex.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://myflex.wordpress.com/osd.xml" title="in:flex Blog" />
		<item>
		<title>Adding width, height, x and y into the CSS Model of Flex</title>
		<link>http://myflex.wordpress.com/2009/12/20/adding-width-height-x-and-y-into-the-css-model-of-flex/</link>
		<comments>http://myflex.wordpress.com/2009/12/20/adding-width-height-x-and-y-into-the-css-model-of-flex/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 17:04:20 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=45</guid>
		<description><![CDATA[You know the problem, you are styling your flex application using css &#8211; you might even compile the css externally and load it through StyleManager at runtime. This is all fine, but when it comes to complex layouts you face one ugly thing, you can not set width, height, x and y through css as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=45&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You know the problem, you are styling your flex application using css &#8211; you might even compile the css externally and load it through StyleManager at runtime. This is all fine, but when it comes to complex layouts you face one ugly thing, you can not set width, height, x and y through css as those are actionscript properties and not styles. But that quite sucks, you have to size everything through top, left, bottom and right styles &#8211; but sometimes you don&#8217;t want that.</p>
<p>To overcome that restriction I seeked throught the whole net and found the following</p>
<p>http://www.craftymind.com/2008/03/31/hacking-width-and-height-properties-into-flexs-css-model/</p>
<p>That was a nice base, but it required to override all the damn classes &#8211; this is no real solution for me, I need to have something easy I can just put into my application and get going. So i took what I found there and made another util out of it &#8211; the StylePropertyManager, this small class will help you to get to results as easy as possible. Here is an example how to use it (put the following into your main application or any container which should have it&#8217;s properties, and child properties, in the css model):</p>
<pre class="brush: jscript;">override public function styleChanged(styleProp:String):void{
	super.styleChanged(styleProp);
	StylePropertyManager.notifyStyleChanged(this,styleProp);
}</pre>
<p>That&#8217;s it &#8211; the class will do everything else for you! There is just one restriction, if you have elements that get initialized through PopupManager or states you need to put the line into that class also. Let&#8217;s say you have a component called &#8220;MyPopup&#8221; which is being opened by PopupManager you need to set it up like the following:</p>
<pre class="brush: jscript;">&lt;mx:TitleWindow
	xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
	initialize=&quot;this.styleName='TitleWindowCheckoutCompletion'&quot;
	&gt;
        &lt;mx:Script&gt;
		&lt;![CDATA[
			import de.aggro.utils.StylePropertyManager;

			override public function styleChanged(styleProp:String):void{
				super.styleChanged(styleProp);
				StylePropertyManager.notifyStyleChanged(this,styleProp);
			}
		]]&gt;
	&lt;/mx:Script&gt;
...</pre>
<p>Note the code that get&#8217;s executed in the initialize handler, you need to set the stylename at that point to get to some results and you need to call the StylePropertyManager::notifyStyleChanged method.</p>
<p>Here is the code of StylePropertyManager:</p>
<pre class="brush: jscript;">package de.aggro.utils
{
	import mx.containers.*;
	import mx.controls.*;
	import mx.controls.sliderClasses.*;
	import mx.core.UIComponent;

	public class StylePropertyManager
	{

		private static const properties : Array = [
		&quot;width&quot;, &quot;height&quot;, &quot;percentWidth&quot;, &quot;percentHeight&quot;,
		&quot;x&quot;, &quot;y&quot;, &quot;visible&quot;, &quot;verticalScrollPolicy&quot;, &quot;horizontalScrollPolicy&quot;,
		&quot;columnWidth&quot;, &quot;rowHeight&quot;, &quot;layout&quot;, &quot;direction&quot;
		];

		private static const topLevelClasses: Array = [
			Slider, Button, ColorPicker, ComboBox, List, CheckBox, ButtonBar
		]

		public function StylePropertyManager()
		{
		}

		public static function notifyStyleChanged(scope:UIComponent, styleProp:String):void{
			if(!styleProp || styleProp == &quot;styleName&quot;){
				//if runtime css swap or direct change of stylename
				updateProperties(scope);
				updateChildProperties(scope);
			}
		}

		private static function updateChildProperties(obj:UIComponent):void{
			var numc:int = obj.numChildren;

			for ( var i : int = 0; i  &quot; + prop);
						}
						obj[item] = prop;
						obj.invalidateDisplayList();
						obj.invalidateProperties();
						obj.invalidateSize();

					}catch(e:Error){}
				}
			}
		}

	}
}</pre>
<p>Let me explain some things, first of all the <em>properties</em> array &#8211; it holds all the properties that you want to be reflected from the css to your component and it&#8217;s children. After that there is another array called <em>topLevelClasses</em> &#8211; it holds all the classes that have children which should not get the parents styles. I added the topLevelClasses array because I was setting the width of a slider and the manager reflected the width to it&#8217;s thumb, that looked kind of broken. Depending on your application needs you might need to adjust one or both of these arrays.</p>
<p>Ok now, you can set properties through css now &#8211; happy styling <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>P.S.: As usual this source code is free to use on a &#8220;do whatever you want with it&#8221; license, take it for commercial, private or whatever purpose and drop me a comment if you like it</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=45&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2009/12/20/adding-width-height-x-and-y-into-the-css-model-of-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>Actionscript PasswordUtil</title>
		<link>http://myflex.wordpress.com/2009/02/02/actionscript-passwordutil/</link>
		<comments>http://myflex.wordpress.com/2009/02/02/actionscript-passwordutil/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 18:33:53 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=36</guid>
		<description><![CDATA[Hi folks,
since so many people liked the CookieUtil, I will give away one of my other utils I have &#8211; a PasswordUtil. Many of you that are developing web applications with flex, or other actionscript 3 techniques, might have been in a situation where you needed to offer your users a solution to register up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=36&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi folks,</p>
<p>since so many people liked the CookieUtil, I will give away one of my other utils I have &#8211; a <strong>PasswordUtil. </strong>Many of you that are developing web applications with flex, or other actionscript 3 techniques, might have been in a situation where you needed to offer your users a solution to register up for a service. But what if you wanted to give your users the possibility to let <strong>you </strong>generate a password for them &#8211; solution is easy use <strong>PasswordUtil</strong>.</p>
<p>It allows you to generate random passwords in actionscript 3 of any length with just one single line of code. Just give a length and the chars that should be used. The class has predefined constants that you can use for the charset.</p>
<p>It comes with pre selected alphabets for the different chars you might want to use for your passwords, but you can extend it with any chars you like &#8211; change some lines and you can use it in russian or any other language.</p>
<p>Using it is easy:</p>
<pre class="brush: jscript;">
var myPassword:String = PasswordUtil.generateRandomString( 32 , PasswordUtil.LETTERS);
trace(myPassword);
</pre>
<p>Just combine that with a button and a textinput field and voilá &#8211; there you go. The package contains a sample flex project that shows what you can do with it. It can also be used to generate a random integer of a specified length.</p>
<p>The scripts is public domain on a use it for whatever you like license, just like the CookieUtil.</p>
<p><a href="http://depositfiles.com/files/yovo8uu4n">http://depositfiles.com/files/yovo8uu4n</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=36&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2009/02/02/actionscript-passwordutil/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>Actionscript Cookie Util</title>
		<link>http://myflex.wordpress.com/2008/11/12/actionscript-cookie-util/</link>
		<comments>http://myflex.wordpress.com/2008/11/12/actionscript-cookie-util/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 13:48:48 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript Cookie]]></category>
		<category><![CDATA[Cookies]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Cookie]]></category>
		<category><![CDATA[Flex Cookie]]></category>
		<category><![CDATA[Utils]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=28</guid>
		<description><![CDATA[Hi folks,
a lot of time has gone by since my last post, I&#8217;m quite busy at the moment. But this didn&#8217;t stop me from setting up this post. I have written a small utility class which I think some of you really would like to use. It is a small class that makes it possible [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=28&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi folks,</p>
<p>a lot of time has gone by since my last post, I&#8217;m quite busy at the moment. But this didn&#8217;t stop me from setting up this post. I have written a small utility class which I think some of you really would like to use. It is a small class that makes it possible to set Cookies via Actionscript without adding anything to the HTML Wrapper, all the code will be injected at runtime.</p>
<p>I have packaged the whole thing as a ready to use flex project but feel free to use it in any other Actionscript 3 environment (Flash or pure AS3). You can grab the files here <a href="http://depositfiles.com/files/ry60vxfh8" target="_blank">http://depositfiles.com/files/ry60vxfh8</a></p>
<p>The Util comes with methods for setting, getting and removing cookies &#8211; as mentioned before you do not have to change a single line in your wrapper, just import the class and start setting cookies from flash or flex. I have made this util because of some concerns using Flash Cookies (Shared Objects) with Internet Explorer 6 &#8211; now i do not use Shared Objects anymore if I do not really need them. I really do not know why this doesn&#8217;t come with any of the Adobe utils.</p>
<p>To use the util, download the file and put the de/aggro/utils/CookieUtil into your source folder, then try the following:</p>
<pre class="brush: jscript;">
import de.aggro.utils.CookieUtil;
//Set a cookie named mycookie with a value of mycookie value with a time to live of 30 days
CookieUtil.setCookie(&quot;mycookie&quot;, &quot;mycookie value&quot;, 30);
//Get that cookie and trace its value
trace(CookieUtil.getCookie(&quot;mycookie&quot;));
//Delete the cookie from the users computer
CookieUtil.deleteCookie(&quot;mycookie&quot;);
</pre>
<p>Feel free to use the util for any commercial, private or educational purposes and drop me a comment if you like it.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=28&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2008/11/12/actionscript-cookie-util/feed/</wfw:commentRss>
		<slash:comments>58</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>CollapsableTitleWindow is online again</title>
		<link>http://myflex.wordpress.com/2008/08/25/collapsabletitlewindow-is-online-again/</link>
		<comments>http://myflex.wordpress.com/2008/08/25/collapsabletitlewindow-is-online-again/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 08:58:10 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=22</guid>
		<description><![CDATA[Since so many people requested it, the sources are online again. No online demo yet but you can grab the files and check it out on your local System. See the post here.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=22&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Since so many people requested it, the sources are online again. No online demo yet but you can grab the files and check it out on your local System. <a href="http://myflex.wordpress.com/2008/03/05/resizable-collapsable-titlewindow/" target="_self">See the post here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/myflex.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/myflex.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=22&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2008/08/25/collapsabletitlewindow-is-online-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>The UID thing</title>
		<link>http://myflex.wordpress.com/2008/05/22/the-uid-thing/</link>
		<comments>http://myflex.wordpress.com/2008/05/22/the-uid-thing/#comments</comments>
		<pubDate>Thu, 22 May 2008 15:03:30 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=18</guid>
		<description><![CDATA[Yesterday I had a really experience with Value Objects and Flex&#8217;s internal namespace. I had a bare value object which had a property &#8220;uid&#8221;. It was just a public property declared as int which I used to store Data from a Database. So When I tried to render those items in a TileList I suddenly [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=18&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday I had a really experience with Value Objects and Flex&#8217;s internal namespace. I had a bare value object which had a property &#8220;uid&#8221;. It was just a public property declared as int which I used to store Data from a Database. So When I tried to render those items in a TileList I suddenly could only highlight and select one of these items. F*** I thought, damn Flex bugs &#8211; so I searched the internet for &#8220;Flex UID&#8221; which leaded me to a <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=about_dataproviders_8.html" target="_blank">great article on Flex&#8217;s internal uid behavior</a>. The thing is, if you have a collection of items and you assign them as a dataprovider of some sort of List, the uid property is automatically added to every Value Object &#8211; but not if it is already there. Then Flex assumes you want to create your own uid for every object. So I just renamed the property (because all of those ids where the same at that point) and *bling* it works =)</p>
<p>So remember one thing, NEVER USE A PROPERTY CALLED UID IF IT ISN&#8217;T UNIQUE !!!</p>
<p>BTW: The Resizable Window class is still not fixed, I really try to do that as soon as possible.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/myflex.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/myflex.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=18&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2008/05/22/the-uid-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>And another one &#8211; CollapsableTitleWindow grows up</title>
		<link>http://myflex.wordpress.com/2008/04/15/and-another-one-collapsabletitlewindow-grows-up/</link>
		<comments>http://myflex.wordpress.com/2008/04/15/and-another-one-collapsabletitlewindow-grows-up/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 16:49:58 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=16</guid>
		<description><![CDATA[Hi folks,
Thanks to everybody who commented on the CollapsableTitleWindow, I really appreciate that 
I just wanted to let you know the current work in progress reagarding the CollapsableTitleWindow, the following things are being implemented at the moment:

Adding a max/min width and height (already done, but I will let you see the code with the update)
Fix [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=16&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi folks,</p>
<p>Thanks to everybody who commented on the CollapsableTitleWindow, I really appreciate that <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I just wanted to let you know the current work in progress reagarding the CollapsableTitleWindow, the following things are being implemented at the moment:</p>
<ul>
<li>Adding a max/min width and height (already done, but I will let you see the code with the update)</li>
<li>Fix the annoying bug when compiling for Flex 3 (there might be two versions in the future &#8211; I appologize but adobe has changed the BorderMetrics calculation)</li>
<li>Let the window push forward if clicked anywhere &#8211; not only the titlebar.</li>
</ul>
<p>I think the update might be ready this weekend, we&#8217;ll see. Stay tuned.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/myflex.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/myflex.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=16&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2008/04/15/and-another-one-collapsabletitlewindow-grows-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Flex Image events to show a preloader</title>
		<link>http://myflex.wordpress.com/2008/04/05/using-flex-image-events-to-show-a-preloader/</link>
		<comments>http://myflex.wordpress.com/2008/04/05/using-flex-image-events-to-show-a-preloader/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 14:59:49 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=15</guid>
		<description><![CDATA[Today I wanted to show a simple preloader in an itemRenderer that just contained one Image. The problem was to get the image&#8217;s events before it was too late since you just can&#8217;t catch the OPEN, PROGRESS or COMPLETE event via MXML (Why did&#8217;t they just add the metadata for that?). I have seen quite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=15&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today I wanted to show a simple preloader in an itemRenderer that just contained one Image. The problem was to get the image&#8217;s events before it was too late since you just can&#8217;t catch the OPEN, PROGRESS or COMPLETE event via MXML (Why did&#8217;t they just add the metadata for that?). I have seen quite a few approaches which extended the Image class but I wanted to use a custom Image class (SuperImage) to use it&#8217;s caching capabilities. So here is the example, I&#8217;m using a normal Image here but you can use any derived class you want, it just has to use the 3 events: (You might use the following as an ItemRenderer)</p>
<p>(Argh! WordPress destroyed the source code, I&#8217;ll repost it soon)</p>
<p>That&#8217;s it, using states it isn&#8217;t too hard to change the UI. If you need cool preloaders go checkout <a href="http://www.ajaxload.info" target="_blank">http://www.ajaxload.info</a> &#8211; they will generate a gif which you can easily import into the Flash IDE to convert it to swf.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/myflex.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/myflex.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=15&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2008/04/05/using-flex-image-events-to-show-a-preloader/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>Another Update to CollapsableTitleWindow</title>
		<link>http://myflex.wordpress.com/2008/03/09/another-update-to-collapsabletitlewindow/</link>
		<comments>http://myflex.wordpress.com/2008/03/09/another-update-to-collapsabletitlewindow/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 19:40:01 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/2008/03/09/another-update-to-collapsabletitlewindow/</guid>
		<description><![CDATA[I have fixed the bug issued that it would close all other windows if closed (as I said, they were only invisible) and added CustomEvents and 2 properties most of you will like &#8211; startMaximized and startCollapsed. You can guess what the will do =) The events are resize, collapse, expand, maximize and minimize (opposite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=13&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have fixed the bug issued that it would close all other windows if closed (as I said, they were only invisible) and added CustomEvents and 2 properties most of you will like &#8211; startMaximized and startCollapsed. You can guess what the will do =) The events are resize, collapse, expand, maximize and minimize (opposite of maximize). They are all encapsulated in CollapsableTitleWindowEvent.</p>
<p>Source is the same as in the previous entry <a href="http://myflex.wordpress.com/2008/03/05/resizable-collapsable-titlewindow/">here</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/myflex.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/myflex.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=13&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2008/03/09/another-update-to-collapsabletitlewindow/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>[Update] Resizable Collapsable TitleWindow (RE-UPLOADED!)</title>
		<link>http://myflex.wordpress.com/2008/03/05/resizable-collapsable-titlewindow/</link>
		<comments>http://myflex.wordpress.com/2008/03/05/resizable-collapsable-titlewindow/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 20:49:51 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/?p=12</guid>
		<description><![CDATA[I have come around the Post regarding SuperPanel and was kind of upset it wasn&#8217;t that what I have been searching for. Also the perfomance is a little sucky (never mind   ) So I thought I have to do it better &#8211; this is what I made out of it
Check the demo here [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=12&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have come around the Post regarding <a href="http://www.wietseveenstra.nl/blog/2007/04/04/flex-superpanel-v15/">SuperPanel </a>and was kind of upset it wasn&#8217;t that what I have been searching for. Also the perfomance is a little sucky (never mind <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ) So I thought I have to do it better &#8211; this is what I made out of it</p>
<p><span style="text-decoration:line-through;"><strong>Check the demo here</strong></span><strong> <a href="http://depositfiles.com/files/7466693" target="_blank">(Currently down, get the files here)</a></strong><span style="text-decoration:line-through;"><a href="http://www.aggrosoft.de/myflex/CollapsableTitleWindowApp.html"><strong><br />
</strong></a></span></p>
<p>You can add new Windows by Pressing the button, it will react exactly as you would expect it from a windows window. Double clicking the header will expand/shrink the window. If you collapse it it will set down to the bottom of it&#8217;s container. Please let me know what you think of it and I will release the source code. As you might guessed you can also resize the window by dragging the right lower corner. Al l graphics are drawn via code but this can be easily changed. There are Methods to let it come up expanded or shrinked, an initial size and position and much more. I&#8217;ll post the sources this weekend, if there is need for it.</p>
<p>[Update]</p>
<p>The source view is available now, I don&#8217;t know why but it doesn&#8217;t work using the contextual menu &#8211; but who cares use this link:</p>
<p><span style="text-decoration:line-through;"><strong>Download and View it HERE</strong></span></p>
<p><span style="text-decoration:line-through;">See the documentation HERE</span></p>
<h2>Temporary only downloadable (no demo online), my webspace is down at the moment &#8211; <a href="http://depositfiles.com/files/7466693" target="_blank">but get it here at Depositfiles</a></h2>
<p>Here are some more examples on those implementations, none of them met my requirements:</p>
<p><a href="http://manish.revise.org/archives/2005/01/09/resizable-titlewindow-in-flex/"><span style="text-decoration:line-through;">http://manish.revise.org/archives/2005/01/09/resizable-titlewindow-in-flex/</span></a></p>
<p><a href="http://dev.jessewarden.com/flex/collapsablepanel/"><span style="text-decoration:line-through;">http://dev.jessewarden.com/flex/collapsablepanel/</span></a></p>
<p><a href="http://www.coenraets.com/"><span style="text-decoration:line-through;">http://www.coenraets.com/</span></a></p>
<p>(All down :-O )</p>
<p>And the best one I found, but with to much overhead:</p>
<p><a href="http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/</a></p>
<h1>License</h1>
<p><a title="License" name="License"></a>This component is licensed under the MIT license.</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
<p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/myflex.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/myflex.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=12&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2008/03/05/resizable-collapsable-titlewindow/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
		<item>
		<title>About Hex Color Codes in Flex (AS3)</title>
		<link>http://myflex.wordpress.com/2007/09/07/about-hex-color-codes-in-flex-as3/</link>
		<comments>http://myflex.wordpress.com/2007/09/07/about-hex-color-codes-in-flex-as3/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 13:07:42 +0000</pubDate>
		<dc:creator>kingschnulli</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Quickstarts]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://myflex.wordpress.com/2007/09/07/about-hex-color-codes-in-flex-as3/</guid>
		<description><![CDATA[Hi folks,
I recognized a lot of views on the last post I made came from users searching for stuff like 0xFFFFFFFF color code or something in that manner. This made me suggest there are a lot of people who do not understand what this means to Flex/Flash using Actionscript 3. So here is a little explanation:
Imagine you&#8217;d [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=11&subd=myflex&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi folks,</p>
<p>I recognized a lot of views on the last post I made came from users searching for stuff like 0xFFFFFFFF color code or something in that manner. This made me suggest there are a lot of people who do not understand what this means to Flex/Flash using Actionscript 3. So here is a little explanation:</p>
<p>Imagine you&#8217;d have a color code like this:</p>
<p>0xFFFF0000</p>
<p>This means a full opaque red for Flex, because the whole color code can be splitted into 4 regions (called channels) : Alpha, Red, Green and Blue</p>
<p>So for our example above this means you&#8217;re having the following channel options:</p>
<p>Alpha = FF (100%)<br />
Red = FF (100%)<br />
Green = 00<br />
Blue = 00</p>
<p>So if you want to have a full opaque Blue you would write:</p>
<p>0xFF0000FF</p>
<p>Alpha = FF (100%)<br />
Red = 00<br />
Green = 00<br />
Blue = FF (100%)</p>
<p>Now if you want to bring in lesser opacity you just have to reduce the alpha value. So to get a half opaque Green you would write:</p>
<p>0&#215;8800FF00</p>
<p>Alpha = 88 (50%)<br />
Red = 00<br />
Green = FF ( 100%)<br />
Blue = 00</p>
<p>So the conclusion out of this is that you will get a bright fully opaque white with writing:</p>
<p>0xFFFFFFFF</p>
<p>And a fully transparent &#8220;black&#8221; (transparent is transparent, no matter which color you take) with the following:</p>
<p>0&#215;00000000</p>
<p>Some people who have a good understanding of colors (not me) can mix nearly every color just by mixing the colors in their head. If you are not interested in that (like me) just take a color picker and look at the Hexadecimal Code of the color.</p>
<p>The above will help you to get deeper into making effects using the Bitmap and BitmapData class and their methods. You can see a really simple example in the last tutorial &#8211; it shows you how to take out specific colors from an Bitmap in Flex / Flash using Actionscript 3. So go and have some fun with Bitmaps and Colors !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/myflex.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/myflex.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myflex.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myflex.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myflex.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myflex.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myflex.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myflex.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myflex.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myflex.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myflex.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myflex.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myflex.wordpress.com&blog=1222897&post=11&subd=myflex&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://myflex.wordpress.com/2007/09/07/about-hex-color-codes-in-flex-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02e0dbf2e7edbdaf5afa92019caecb39?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kingschnulli</media:title>
		</media:content>
	</item>
	</channel>
</rss>