<?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>My &#039;Flex&#039;ible Experiments</title>
	<atom:link href="http://subeesh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://subeesh.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 20 Sep 2011 17:34:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='subeesh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My &#039;Flex&#039;ible Experiments</title>
		<link>http://subeesh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://subeesh.wordpress.com/osd.xml" title="My &#039;Flex&#039;ible Experiments" />
	<atom:link rel='hub' href='http://subeesh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Flex TextInput restrict numbers</title>
		<link>http://subeesh.wordpress.com/2011/06/18/flex-4-numberinput/</link>
		<comments>http://subeesh.wordpress.com/2011/06/18/flex-4-numberinput/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 11:35:34 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[restrict]]></category>
		<category><![CDATA[textinput]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=208</guid>
		<description><![CDATA[The &#8220;restrict&#8221; property of TextInput control is very useful in restricting input characters.Though restrict=&#8221;0-9&#8243; works well for positive numbers, it is not enough for negative and decimal numbers as the user can enter &#8220;-&#8221; and &#8220;.&#8221; signs anywhere between the text. NumberInput is a simple class extending Spark TextInput. It has got two properties for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=208&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The &#8220;restrict&#8221; property of TextInput control is very useful in restricting input characters.Though restrict=&#8221;0-9&#8243; works well for positive numbers, it is not enough for negative and decimal numbers as the user can enter &#8220;-&#8221; and &#8220;.&#8221; signs anywhere between the text. NumberInput is a simple class extending Spark TextInput. It has got two properties for controlling the input.<br />
<code></code></p>
<ul>
<li><strong>allowNegative</strong>:- Specifies whether negative numbers are permitted. Valid values are <code>true</code> or <code>false</code></li>
<li><strong>fractionalDigits</strong>:- The maximum number of digits that can appear after the decimal separator. The default value is <code>0</code></li>
</ul>
<p>The base logic is derived from <a href="http://blog.appdivision.com/" target="_blank">APPDIVISION</a><a href="http://blog.appdivision.com/" target="_blank"> blog</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<pre><span style="color:#0000FF;">
package
{
	import flashx.textLayout.operations.InsertTextOperation;

	import spark.components.TextInput;
	import spark.events.TextOperationEvent;

	public class NumberInput extends TextInput
	{
		public function NumberInput()
		{
			updateRegex();
		}

		//regex pattern
		private var regex:RegExp;

		private var _allowNegative:Boolean = true;
		/**
		 *  Specifies whether negative numbers are permitted.
		 *  Valid values are true or false
		 *
		 *  @default true
		 */
		public function set allowNegative(value:Boolean):void
		{
			_allowNegative = value;
			updateRegex();
		}

		private var _fractionalDigits:int = 0;
		/**
		 *  The maximum number of digits that can appear after the decimal
		 *  separator.
		 *
		 *

The default value is 0
		 */
		public function set fractionalDigits(value:int):void
		{
			_fractionalDigits = value;
			updateRegex();
		}

		override protected function childrenCreated():void
		{
			super.childrenCreated();

			//listen for the text change event
			addEventListener(TextOperationEvent.CHANGING, onTextChange);
		}

		public function onTextChange(event:TextOperationEvent):void
		{
			if (regex &amp;&amp; event.operation is InsertTextOperation)
			{
				// What will be the text if this input is allowed to happen
				var textToBe:String = "";
				// Check selection
				if (selectionActivePosition &gt; 0)
				{
					textToBe += text.substr(0, selectionActivePosition)
				}
				//append the newly entered text with the existing text
				textToBe += InsertTextOperation(event.operation).text;
				if (selectionAnchorPosition &gt; 0)
				{
					textToBe += text.substr(selectionAnchorPosition, text.length - selectionAnchorPosition);
				}
				var match:Object = regex.exec(textToBe);
				if (!match || match[0] != textToBe)
				{
					// The textToBe didn't match the expression... stop the event
					event.preventDefault();
				}
				//special condition checking to prevent multiple dots
				var firstDotIndex:int = textToBe.indexOf(".");
				if( firstDotIndex != -1)
				{
					var lastDotIndex:int = textToBe.lastIndexOf(".");
					if(lastDotIndex != -1 &amp;&amp; lastDotIndex != firstDotIndex)
						event.preventDefault();
				}
			}
		}

		private function updateRegex():void
		{
			var regexString:String = "\\d{0,50}";
			if(_allowNegative)
				regexString = "^\\-?" + regexString;
			else
				regexString = "^" + regexString;
			if(_fractionalDigits &gt; 0 )
				regexString += "\\.?\\d{0," + _fractionalDigits.toString() + "}$";
			else
				regexString += "$";
			regex = new RegExp(regexString);
		}
	}
}
</span></pre>
<br />Filed under: <a href='http://subeesh.wordpress.com/category/flex/'>Flex</a> Tagged: <a href='http://subeesh.wordpress.com/tag/flex-4/'>Flex 4</a>, <a href='http://subeesh.wordpress.com/tag/number/'>number</a>, <a href='http://subeesh.wordpress.com/tag/restrict/'>restrict</a>, <a href='http://subeesh.wordpress.com/tag/textinput-2/'>textinput</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=208&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2011/06/18/flex-4-numberinput/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex 4 Dropdownlist and Accessibility</title>
		<link>http://subeesh.wordpress.com/2011/04/26/flex-4-dropdownlist-and-accessibility/</link>
		<comments>http://subeesh.wordpress.com/2011/04/26/flex-4-dropdownlist-and-accessibility/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 04:29:11 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=203</guid>
		<description><![CDATA[Pressing up/down arrow keys when Flex 4 DropdownList has focus changes the selection. Sometimes the user would want to see the list before making the selection.This can be achieved by overriding the keydownHandler and changing the default behaviour to open the drop list if it is not already open. override protected function keyDownHandler(event:KeyboardEvent):void { if(event.keyCode [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=203&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Pressing up/down arrow keys when Flex 4 DropdownList has focus changes the selection. Sometimes the user would want to see the list before making the selection.This can be achieved by overriding the keydownHandler and changing the default behaviour to open the drop list if it is not already open.</p>
<p>override protected function keyDownHandler(event:KeyboardEvent):void<br />
{<br />
if(event.keyCode == Keyboard.DOWN &amp;&amp; !isDropDownOpen)<br />
openDropDown();<br />
else<br />
super.keyDownHandler(event);<br />
}</p>
<br />Filed under: <a href='http://subeesh.wordpress.com/category/flex/'>Flex</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=203&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2011/04/26/flex-4-dropdownlist-and-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex Formatter Plugin</title>
		<link>http://subeesh.wordpress.com/2009/11/24/flex-formatter-plugin/</link>
		<comments>http://subeesh.wordpress.com/2009/11/24/flex-formatter-plugin/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 09:50:42 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=166</guid>
		<description><![CDATA[Flex Formatter is an Eclipse Plugin to provide source code formatting for Adobe Flex code (i.e. Actionscript and MXML). It can Formate code Indent Code Generate ASDoc comments Rearrange AS Code Here is the screenshot tour of the installation process in Flex Builder 3 Step 1: Begin the installation from the Flex Builder Help menu [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=166&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://sourceforge.net/projects/flexformatter/">Flex Formatter</a> is an Eclipse Plugin to provide source code formatting for Adobe Flex code (i.e. Actionscript and MXML).</p>
<p>It can</p>
<ul>
<li>Formate code</li>
<li>Indent Code</li>
<li>Generate ASDoc comments</li>
<li>Rearrange AS Code</li>
</ul>
<p>Here is the screenshot tour of the installation process in Flex Builder 3</p>
<p><strong>Step 1: </strong>Begin the installation from the Flex Builder Help menu item.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/12.jpg"><img class="aligncenter size-full wp-image-178" title="1" src="http://subeesh.files.wordpress.com/2009/11/12.jpg?w=600" alt=""   /></a></p>
<p><strong>Step 2:</strong> This screenshot show the screen as it initially comes up. In this case you will need to change the radio button to indicate that this is a new install.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/21.jpg"><img class="aligncenter size-full wp-image-179" title="2" src="http://subeesh.files.wordpress.com/2009/11/21.jpg?w=600" alt=""   /></a></p>
<p><strong>Step 3 :</strong> This screen will vary depending on the features you have installed already. You want to click on the New Remote Site button.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/31.jpg"><img class="aligncenter size-full wp-image-180" title="3" src="http://subeesh.files.wordpress.com/2009/11/31.jpg?w=600" alt=""   /></a><strong></strong></p>
<p><strong>Step 4: </strong>This screen is showing the New Remote Site dialog, filled in with the correct information to install Flex Formatter</p>
<p>Name : Flex Formatter</p>
<p>URL : http://flexformatter.googlecode.com/svn/trunk/FlexFormatter/FlexPrettyPrintCommandUpdateSite/</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/41.jpg"><img class="aligncenter size-full wp-image-181" title="4" src="http://subeesh.files.wordpress.com/2009/11/41.jpg?w=600" alt=""   /></a></p>
<p><strong>Step 5:</strong> When you first come back to this screen, if the site you added is NOT selected, be sure to select it before clicking Finish.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/51.jpg"><img class="aligncenter size-full wp-image-182" title="5" src="http://subeesh.files.wordpress.com/2009/11/51.jpg?w=600" alt=""   /></a></p>
<p><strong>Step 6 :</strong> This next screen shows all of the features that are available to install.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/61.jpg"><img class="aligncenter size-full wp-image-183" title="6" src="http://subeesh.files.wordpress.com/2009/11/61.jpg?w=600" alt=""   /></a></p>
<p><strong>Step 7:</strong> Click the button to accept the license agreement.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/71.jpg"><img class="aligncenter size-full wp-image-185" title="7" src="http://subeesh.files.wordpress.com/2009/11/71.jpg?w=600" alt=""   /></a></p>
<p><strong>Step 8:</strong> Confirm the install location</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/81.jpg"><img class="aligncenter size-full wp-image-186" title="8" src="http://subeesh.files.wordpress.com/2009/11/81.jpg?w=600" alt=""   /></a><strong>Step 9 :</strong> Just a screenshot of the in-process installation.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/91.jpg"><img class="aligncenter size-full wp-image-187" title="9" src="http://subeesh.files.wordpress.com/2009/11/91.jpg?w=600" alt=""   /></a><strong></strong></p>
<p><strong>Step 10 : </strong>This screen is saying that the provider cannot be verified . Ignore that and click on Install All</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/101.jpg"><img class="aligncenter size-full wp-image-188" title="10" src="http://subeesh.files.wordpress.com/2009/11/101.jpg?w=600" alt=""   /></a><strong></strong></p>
<p><strong>Step 11:</strong> Flex Builder needs to be restarted after installing PHPEclipse.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/111.jpg"><img class="aligncenter size-full wp-image-189" title="11" src="http://subeesh.files.wordpress.com/2009/11/111.jpg?w=600" alt=""   /></a><strong></strong></p>
<p><strong>Step 12: </strong>When the Flex Builder is restarted, you will see these new buttons in the toolbar if the plugin is successfully installed.</p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/121.jpg"><img class="aligncenter size-full wp-image-193" title="12" src="http://subeesh.files.wordpress.com/2009/11/121.jpg?w=600" alt=""   /></a></p>
<p>By Default, <strong>Ctrl + Shift + F </strong>is the command to format code and <strong>Ctrl + I </strong>is the command to indent code. You can change these commands in <strong>Window-&gt;Preferences-&gt;General-&gt;Keys </strong></p>
<p>Code is not formatted the way you expected ? You can change all settings in</p>
<p><strong>Window-&gt;Preferences-&gt;Flex Formatting</strong></p>
<p><a href="http://subeesh.files.wordpress.com/2009/11/131.jpg"><img class="aligncenter size-full wp-image-195" title="13" src="http://subeesh.files.wordpress.com/2009/11/131.jpg?w=600" alt=""   /></a></p>
<br />Posted in Flex  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=166&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2009/11/24/flex-formatter-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/12.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/21.jpg" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/31.jpg" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/41.jpg" medium="image">
			<media:title type="html">4</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/51.jpg" medium="image">
			<media:title type="html">5</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/61.jpg" medium="image">
			<media:title type="html">6</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/71.jpg" medium="image">
			<media:title type="html">7</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/81.jpg" medium="image">
			<media:title type="html">8</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/91.jpg" medium="image">
			<media:title type="html">9</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/101.jpg" medium="image">
			<media:title type="html">10</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/111.jpg" medium="image">
			<media:title type="html">11</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/121.jpg" medium="image">
			<media:title type="html">12</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/11/131.jpg" medium="image">
			<media:title type="html">13</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex Youtube Interface</title>
		<link>http://subeesh.wordpress.com/2009/02/02/flex-youtube-interface/</link>
		<comments>http://subeesh.wordpress.com/2009/02/02/flex-youtube-interface/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 13:58:38 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=153</guid>
		<description><![CDATA[Update: 4 Nov 2009 Proxy file is changed again!!! to get the correct flv url. Thanks to NGCoders for the php proxy. This is a simple youtube interface created in flex using the as3-youtube-data-api . I also used the Flex Video Player from http://www.fxcomponents.com/ and Kingnare theme from Scalenine. Right Click to view the Source . [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=153&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Update</strong>: <strong>4 Nov 2009</strong></p>
<p>Proxy file is changed again!!! to get the correct flv url.</p>
<p>Thanks to <a href="http://www.ngcoders.com/">NGCoders</a> for the php proxy.</p>
<p>This is a simple youtube interface created in flex using the <a href="http://code.google.com/p/as3-youtube-data-api/">as3-youtube-data-api</a> . I also used the <a href="http://www.fxcomponents.com/flex-video-player/">Flex Video Player</a> from <a href="http://www.fxcomponents.com/">http://www.fxcomponents.com/</a> and <a href="http://www.scalenine.com/themes/kingnare/Kingnare.html">Kingnare</a> theme from <a href="http://www.scalenine.com/">Scalenine</a>.</p>
<p>Right Click to view the Source .</p>
<p>Click <a href="http://keystrokesinc.info/test/subeesh/YoutubeFlex.html">here </a>or on the image below to view the app</p>
<p><a href="http://keystrokesinc.info/test/subeesh/YoutubeFlex.html"><img class="aligncenter size-full wp-image-154" title="fxtube" src="http://subeesh.files.wordpress.com/2009/02/fxtube.jpg?w=600" alt="fxtube"   /></a></p>
<br />Posted in Flex, youtube  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=153&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2009/02/02/flex-youtube-interface/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2009/02/fxtube.jpg" medium="image">
			<media:title type="html">fxtube</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex Coding Conventions</title>
		<link>http://subeesh.wordpress.com/2009/01/30/flex-coding-conventions/</link>
		<comments>http://subeesh.wordpress.com/2009/01/30/flex-coding-conventions/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 05:51:59 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=150</guid>
		<description><![CDATA[Here is the link to the document which lays out the coding standards for writing open-source Flex framework components in ActionScript 3. Adhering to these standards makes the source code look consistent, well-organized, and professional. http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions Posted in Flex<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=150&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is the link to the document which lays out the coding standards for writing open-source Flex framework components in ActionScript 3. Adhering to these standards makes the source code look consistent, well-organized, and professional.</p>
<p><a href="http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions">http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions</a></p>
<br />Posted in Flex  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=150&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2009/01/30/flex-coding-conventions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Build real-time social apps in Flex</title>
		<link>http://subeesh.wordpress.com/2009/01/22/build-real-time-social-apps-in-flex/</link>
		<comments>http://subeesh.wordpress.com/2009/01/22/build-real-time-social-apps-in-flex/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 11:06:33 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Cocomo]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=148</guid>
		<description><![CDATA[Adobe launched &#8220;Cocomo&#8221;  which is a Platform as a Service that allows Flex developers to easily add real-time social capabilities into their RIA (rich Internet applications). For more information click here Posted in Flex Tagged: Cocomo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=148&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Adobe launched <a href="http://labs.adobe.com/technologies/cocomo/">&#8220;Cocomo&#8221;</a>  which is a Platform as a Service that allows Flex developers to easily add real-time social capabilities into their RIA (rich Internet applications).</p>
<p>For more information click <a href="http://labs.adobe.com/technologies/cocomo/">here</a></p>
<br />Posted in Flex Tagged: Cocomo <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=148&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2009/01/22/build-real-time-social-apps-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing PHPEclipse plugin in Flex Builder</title>
		<link>http://subeesh.wordpress.com/2008/11/05/installing-phpeclipse-plugin-in-flex-builder/</link>
		<comments>http://subeesh.wordpress.com/2008/11/05/installing-phpeclipse-plugin-in-flex-builder/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 04:59:24 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Editor in Flex Builder]]></category>
		<category><![CDATA[PHPEclipse in Flex Builder]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=115</guid>
		<description><![CDATA[Here you will find a screenshot tour of the PHPEclipse installation process in Flex Builder 3 Step 1 :              Begin the installation from the Flex Builder Help menu item.          Step 2 :              This screenshot show the screen as it initially comes up. In this case you will need to change the radio button [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=115&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://subeesh.files.wordpress.com/2008/11/4.jpg"></a>Here you will find a screenshot tour of the PHPEclipse installation process in Flex Builder 3</p>
<p><span style="color:#333399;"><strong>Step 1 :</strong></span></p>
<p>             Begin the installation from the Flex Builder Help menu item.</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/1.jpg"><img class="aligncenter size-full wp-image-124" title="1" src="http://subeesh.files.wordpress.com/2008/11/1.jpg?w=600" alt="1"   /></a>        </p>
<p><strong><span style="color:#333399;">Step 2 :</span></strong></p>
<p>             This screenshot show the screen as it initially comes up. In this case you will need to change the radio button to indicate that this is a new install.</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/2.jpg"><img class="aligncenter size-full wp-image-126" title="2" src="http://subeesh.files.wordpress.com/2008/11/2.jpg?w=600&#038;h=591" alt="2" width="600" height="591" /></a></p>
<p><strong><span style="color:#333399;">Step 3 :</span></strong></p>
<p>           This screen will vary depending on the features you have installed already. You want to click on the New Remote Site button. If you are behind a proxy and the Flex Builder install mechanism does not work, then you can download a zipped version of the update site and then click the New Local Site button instead. </p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/3.jpg"><img class="aligncenter size-full wp-image-127" title="3" src="http://subeesh.files.wordpress.com/2008/11/3.jpg?w=600&#038;h=591" alt="3" width="600" height="591" /></a></p>
<p><strong><span style="color:#333399;">Step 4 :</span></strong></p>
<p>           This screen is showing the New Remote Site dialog, filled in with the correct information to install PHPEclipse</p>
<p>           Name : PHPEclipse 1.2.x</p>
<p>           URL :   <a class="ext-link" href="http://update.phpeclipse.net/update/stable/1.2.x"><span class="icon">http://update.<span class="searchword0">phpeclipse</span>.net/update/stable/1.2.x</span></a></p>
<p> <a href="http://subeesh.files.wordpress.com/2008/11/41.jpg"><img class="aligncenter size-full wp-image-129" title="41" src="http://subeesh.files.wordpress.com/2008/11/41.jpg?w=600" alt="41"   /></a></p>
<p><strong><span style="color:#333399;">Step 5:</span></strong></p>
<p>          When you first come back to this screen, if the site you added is NOT selected, be sure to select it before clicking Finish.</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/5.jpg"><img class="aligncenter size-full wp-image-131" title="5" src="http://subeesh.files.wordpress.com/2008/11/5.jpg?w=600&#038;h=591" alt="5" width="600" height="591" /></a></p>
<p><span style="color:#333399;"><strong>Step 6:</strong></span></p>
<p>          This next screen shows all of the features that are available to install.</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/6.jpg"><img class="aligncenter size-full wp-image-132" title="6" src="http://subeesh.files.wordpress.com/2008/11/6.jpg?w=600&#038;h=543" alt="6" width="600" height="543" /></a></p>
<p><strong><span style="color:#333399;">Step 7:</span></strong></p>
<p>          Click the button to accept the license agreement.</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/7.jpg"><img class="aligncenter size-full wp-image-133" title="7" src="http://subeesh.files.wordpress.com/2008/11/7.jpg?w=600&#038;h=543" alt="7" width="600" height="543" /></a></p>
<p><strong><span style="color:#333399;">Step 8:</span></strong></p>
<p>          Confirm the install location</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/8.jpg"><img class="aligncenter size-full wp-image-134" title="8" src="http://subeesh.files.wordpress.com/2008/11/8.jpg?w=600&#038;h=543" alt="8" width="600" height="543" /></a></p>
<p><strong><span style="color:#333399;">Step 9:</span></strong></p>
<p>          Just a screenshot of the in-process installation.</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/9.jpg"><img class="aligncenter size-full wp-image-135" title="9" src="http://subeesh.files.wordpress.com/2008/11/9.jpg?w=600" alt="9"   /></a></p>
<p><span style="color:#333399;"><strong>Step 10:</strong></span></p>
<p>            This screen is saying that the provider cannot be verified . Ignore that and click on Install All .Not even Eclipse.org nor IBM sign their features.</p>
<p> </p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/10.jpg"><img class="aligncenter size-full wp-image-136" title="10" src="http://subeesh.files.wordpress.com/2008/11/10.jpg?w=600&#038;h=500" alt="10" width="600" height="500" /></a></p>
<p><span style="color:#333399;"><strong>Step 11:</strong></span></p>
<p>           Flex Builder needs to be restarted after installing PHPEclipse.</p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/11.jpg"><img class="aligncenter size-full wp-image-138" title="11" src="http://subeesh.files.wordpress.com/2008/11/11.jpg?w=600" alt="11"   /></a></p>
<p><strong><span style="color:#333399;">Step 12:</span></strong></p>
<p>          Finally, after restarting Flex Builder, the first thing you will typically want to do is open the PHPEclipse perspective to check whether it is installed correctly. </p>
<p><a href="http://subeesh.files.wordpress.com/2008/11/12.jpg"><img class="aligncenter size-full wp-image-139" title="12" src="http://subeesh.files.wordpress.com/2008/11/12.jpg?w=600" alt="12"   /></a></p>
<p>Thats it !! . PHPEclipse is successfully installed.</p>
<br />Posted in Flex, PHP Tagged: PHP Editor in Flex Builder, PHPEclipse in Flex Builder <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=115&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2008/11/05/installing-phpeclipse-plugin-in-flex-builder/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/1.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/2.jpg" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/3.jpg" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/41.jpg" medium="image">
			<media:title type="html">41</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/5.jpg" medium="image">
			<media:title type="html">5</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/6.jpg" medium="image">
			<media:title type="html">6</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/7.jpg" medium="image">
			<media:title type="html">7</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/8.jpg" medium="image">
			<media:title type="html">8</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/9.jpg" medium="image">
			<media:title type="html">9</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/10.jpg" medium="image">
			<media:title type="html">10</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/11.jpg" medium="image">
			<media:title type="html">11</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/12.jpg" medium="image">
			<media:title type="html">12</media:title>
		</media:content>
	</item>
		<item>
		<title>FLVPlayback in Flex</title>
		<link>http://subeesh.wordpress.com/2008/11/03/flvplayback-in-flex/</link>
		<comments>http://subeesh.wordpress.com/2008/11/03/flvplayback-in-flex/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 07:34:37 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[FLV Player Flex]]></category>
		<category><![CDATA[FLVPlayback Flex]]></category>
		<category><![CDATA[VideoDisplay Flex]]></category>
		<category><![CDATA[VideoPlayer Flex]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=104</guid>
		<description><![CDATA[One thing clearly lacking in Flex is a Videoplayer component like the one found in Flash CS3.  Flex does have a VideoDisplay component , but it do not have controls to interact with video like  play, pause, seek etc. In few simple steps we can easily use the FLash FLVPlayback in Flex On windows machine [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=104&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One thing clearly lacking in Flex is a Videoplayer component like the one found in Flash CS3.  <span class="searchword1">Flex</span> does have a VideoDisplay component , but it do not have controls to interact with video like  play, pause, seek etc.</p>
<p>In few simple steps we can easily use the FLash FLVPlayback in Flex</p>
<ol>
<li>On windows machine go to <span style="color:#800080;">Program Files\Adobe\Adobe Flash CS3\en\Configuration\Component Source\ActionScript 3.0\FLVPlayback</span> and copy the &#8220;fl&#8221; folder containing the FLVPlayback source and paste it in the flex application&#8217;s source folder .</li>
<li>Create new actionscript class named Icon.as in the video folder with an empty constructor . This is to get rid of a compiler error like this &#8221; <span style="color:#ff0000;">Call to a possibly undefined method Icon. </span>&#8220;</li>
<li>In the FLVPlayback class on line number 871, wrap the following lines of code in an if statement.</li>
<p><code><br />
boundingBox_mc.visible = false;<br />
removeChild(boundingBox_mc);<br />
boundingBox_mc = null;</code></ol>
<p>The result will look like this</p>
<ol><code> if(boundingBox_mc){<br />
boundingBox_mc.visible = false;<br />
removeChild(boundingBox_mc);<br />
boundingBox_mc = null;<br />
};</code></ol>
<p>Finally we need do is to copy the Video player controlbar skins . We can find them in this directory    <span style="color:#800080;">Program Files\Adobe\Adobe Flash CS3\en\Configuration\FLVPlayback Skins\ActionScript 3.0</span><br />
Thats it !! . We are good to go now . Click on the image below to view a sample ( Right click to view the source )</p>
<p><a href="http://dev.meshenergy.com/Test/Examples/FLVTest/FLVTest.html"><img class="aligncenter size-full wp-image-110" title="untitled" src="http://subeesh.files.wordpress.com/2008/11/untitled.jpg?w=600" alt=""   /></a></p>
<br />Posted in Flex Tagged: FLV Player Flex, FLVPlayback Flex, VideoDisplay Flex, VideoPlayer Flex <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=104&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2008/11/03/flvplayback-in-flex/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/11/untitled.jpg" medium="image">
			<media:title type="html">untitled</media:title>
		</media:content>
	</item>
		<item>
		<title>Free Flex Themes</title>
		<link>http://subeesh.wordpress.com/2008/10/31/free-flex-themes/</link>
		<comments>http://subeesh.wordpress.com/2008/10/31/free-flex-themes/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 12:23:33 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex CSS Theme]]></category>
		<category><![CDATA[Flex Themes]]></category>
		<category><![CDATA[Free Flex Themes]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=100</guid>
		<description><![CDATA[ The winning themes of the “Skin to Win Challenge” conducted by ScaleNine are now available for download. All the themes are really cool and free to download. Click here to check it out!! Posted in CSS, Flex Tagged: Flex CSS Theme, Flex Themes, Free Flex Themes<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=100&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> The winning themes of the “Skin to Win Challenge” conducted by <a href="http://www.scalenine.com/">ScaleNine</a> are now available for download. All the themes are really cool and free to download. Click <a href="http://www.scalenine.com/gallery/">here</a> to check it out!!</p>
<br />Posted in CSS, Flex Tagged: Flex CSS Theme, Flex Themes, Free Flex Themes <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=100&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2008/10/31/free-flex-themes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Butterfly in Flex ( Degrafa )</title>
		<link>http://subeesh.wordpress.com/2008/10/25/butterfly-in-flex-degrafa/</link>
		<comments>http://subeesh.wordpress.com/2008/10/25/butterfly-in-flex-degrafa/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 18:53:23 +0000</pubDate>
		<dc:creator>subeesh</dc:creator>
				<category><![CDATA[Degrafa]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Degrafa Butterfly]]></category>
		<category><![CDATA[Degrafa SVG]]></category>
		<category><![CDATA[Flex Butterfly]]></category>
		<category><![CDATA[Flex Degrafa]]></category>
		<category><![CDATA[Flex SVG]]></category>
		<category><![CDATA[SVG Butterfly flex]]></category>

		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=88</guid>
		<description><![CDATA[Last year Degrafa posted a SVG Tiger example demostrating the power of &#60;Path&#62; tag. I recently learned how to use that tag and created a simple example using an SVG file dowloaded from here . This is just mxml code with the &#8220;data&#8221; copied from the SVG file. The colours can be changed using the ColorPicker [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=88&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last year Degrafa posted a <a href="http://www.degrafa.com/2007/07/27/how-complex-can-you-get-with-degrafa-very/"><strong>SVG Tiger</strong></a> example demostrating the power of &lt;Path&gt; tag. I recently learned how to use that tag and created a simple example using an SVG file dowloaded from <a href="http://www.croczilla.com/svg/samples"><strong>here </strong></a>.</p>
<p>This is just mxml code with the &#8220;data&#8221; copied from the SVG file. The colours can be changed using the ColorPicker on the right. Drag the slider to zoom in and out.</p>
<p>Click <a href="http://dev.meshenergy.com/Test/Degrafa_Butterfly/DegrafaButterfly.html"><strong>here</strong></a> or on the image to view the example<br />
( Right Click to view the Source <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p><a href="http://dev.meshenergy.com/Test/Degrafa_Butterfly/DegrafaButterfly.html"><img class="aligncenter size-full wp-image-89" title="fly" src="http://subeesh.files.wordpress.com/2008/10/fly.jpg?w=600" alt=""   /></a></p>
<br />Posted in Degrafa, Flex Tagged: Degrafa Butterfly, Degrafa SVG, Flex Butterfly, Flex Degrafa, Flex SVG, SVG Butterfly flex <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/subeesh.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/subeesh.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/subeesh.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/subeesh.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/subeesh.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/subeesh.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/subeesh.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/subeesh.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/subeesh.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/subeesh.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/subeesh.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/subeesh.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/subeesh.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/subeesh.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=subeesh.wordpress.com&amp;blog=2135278&amp;post=88&amp;subd=subeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://subeesh.wordpress.com/2008/10/25/butterfly-in-flex-degrafa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e45df7f5b631317f238e69e2f06106b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">subeesh</media:title>
		</media:content>

		<media:content url="http://subeesh.files.wordpress.com/2008/10/fly.jpg" medium="image">
			<media:title type="html">fly</media:title>
		</media:content>
	</item>
	</channel>
</rss>
