<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Subeesh's Weblog</title>
	<atom:link href="http://subeesh.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://subeesh.wordpress.com</link>
	<description>Hot heads and cold hearts never solved anything ...</description>
	<pubDate>Wed, 20 Aug 2008 17:07:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Flex Password Strength Meter by subeesh</title>
		<link>http://subeesh.wordpress.com/2008/02/19/flex-password-strength-meter/#comment-25</link>
		<dc:creator>subeesh</dc:creator>
		<pubDate>Tue, 15 Jul 2008 10:03:45 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=9#comment-25</guid>
		<description>Hello Jay,

Now the View Source is enabled</description>
		<content:encoded><![CDATA[<p>Hello Jay,</p>
<p>Now the View Source is enabled</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex Password Strength Meter by Jay</title>
		<link>http://subeesh.wordpress.com/2008/02/19/flex-password-strength-meter/#comment-24</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Wed, 25 Jun 2008 21:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=9#comment-24</guid>
		<description>Can't see the code still - could you make your .mxml and .as files available for download?</description>
		<content:encoded><![CDATA[<p>Can&#8217;t see the code still - could you make your .mxml and .as files available for download?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Youtube Interface in Flex &#8212; FxTube by subeesh</title>
		<link>http://subeesh.wordpress.com/2008/05/20/youtube-interface-in-flex/#comment-23</link>
		<dc:creator>subeesh</dc:creator>
		<pubDate>Wed, 11 Jun 2008 16:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=10#comment-23</guid>
		<description>Hi Ben , 

I am not loading the swf here , in the videoplayer , the flv file from youtube is played directly. When we change the video , the source of the videoplayer is changed to the new flv file</description>
		<content:encoded><![CDATA[<p>Hi Ben , </p>
<p>I am not loading the swf here , in the videoplayer , the flv file from youtube is played directly. When we change the video , the source of the videoplayer is changed to the new flv file</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Youtube Interface in Flex &#8212; FxTube by Ben Reed</title>
		<link>http://subeesh.wordpress.com/2008/05/20/youtube-interface-in-flex/#comment-22</link>
		<dc:creator>Ben Reed</dc:creator>
		<pubDate>Wed, 11 Jun 2008 09:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=10#comment-22</guid>
		<description>looking good my friend. I dont suppose you could divulge how you got the loaded movies to sucessfully die? I am trying to build something similar and have real issues unloading the first swf</description>
		<content:encoded><![CDATA[<p>looking good my friend. I dont suppose you could divulge how you got the loaded movies to sucessfully die? I am trying to build something similar and have real issues unloading the first swf</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Youtube Interface in Flex &#8212; FxTube by Indy</title>
		<link>http://subeesh.wordpress.com/2008/05/20/youtube-interface-in-flex/#comment-21</link>
		<dc:creator>Indy</dc:creator>
		<pubDate>Mon, 02 Jun 2008 10:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=10#comment-21</guid>
		<description>Subeesh, Good work! 

Would be great of you to share how you have developed this as I am a noob to Flex! Thx buddy!</description>
		<content:encoded><![CDATA[<p>Subeesh, Good work! </p>
<p>Would be great of you to share how you have developed this as I am a noob to Flex! Thx buddy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML Tables in Flex by subeesh</title>
		<link>http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/#comment-20</link>
		<dc:creator>subeesh</dc:creator>
		<pubDate>Thu, 22 May 2008 04:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=7#comment-20</guid>
		<description>I think the html table structure you are trying to show it in flex will be similar to this structure



	
		 row 1 column 1 
		 row 1 column 2 
		
	

	
		 row 2 column 1 
		 row 2 column 2 
		
	


I have used regular expression for filtering the required html table sections.

First i have used a regular expression to filter the  tag. When that regex is applied to the string, the string will contain only the table information like the above one. This is the table expression to match the table tag from the rest of the html tags.

Once we parse out the table structure, now we can look for the Rows( tags ). Again we use a regular expression on the string obtained ( this time an expression to filter rows). Now we will get an array of  tags. In this case an array of length 2. The length of the array is the number of rows in the table. 

Now we have to loop through this array and again apply a regular expression to parse the  tags . If we do that we will get an array conating the tds in that row. This contains the table data.

You can store these arrays in a nested structure and use that structure to populate the flex grid component.

I will try to post a code snippet next time so that you will get a better idea of what i am talking about</description>
		<content:encoded><![CDATA[<p>I think the html table structure you are trying to show it in flex will be similar to this structure</p>
<p>		 row 1 column 1<br />
		 row 1 column 2 </p>
<p>		 row 2 column 1<br />
		 row 2 column 2 </p>
<p>I have used regular expression for filtering the required html table sections.</p>
<p>First i have used a regular expression to filter the  tag. When that regex is applied to the string, the string will contain only the table information like the above one. This is the table expression to match the table tag from the rest of the html tags.</p>
<p>Once we parse out the table structure, now we can look for the Rows( tags ). Again we use a regular expression on the string obtained ( this time an expression to filter rows). Now we will get an array of  tags. In this case an array of length 2. The length of the array is the number of rows in the table. </p>
<p>Now we have to loop through this array and again apply a regular expression to parse the  tags . If we do that we will get an array conating the tds in that row. This contains the table data.</p>
<p>You can store these arrays in a nested structure and use that structure to populate the flex grid component.</p>
<p>I will try to post a code snippet next time so that you will get a better idea of what i am talking about</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML Tables in Flex by Craig</title>
		<link>http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/#comment-19</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Thu, 22 May 2008 02:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=7#comment-19</guid>
		<description>I am interested in how to create html table to display in grid, but not sure what you are talking about. You are parsing out the html table tags and then displaying?
Not sure what this means...
Craig</description>
		<content:encoded><![CDATA[<p>I am interested in how to create html table to display in grid, but not sure what you are talking about. You are parsing out the html table tags and then displaying?<br />
Not sure what this means&#8230;<br />
Craig</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Youtube Interface in Flex &#8212; FxTube by george</title>
		<link>http://subeesh.wordpress.com/2008/05/20/youtube-interface-in-flex/#comment-18</link>
		<dc:creator>george</dc:creator>
		<pubDate>Wed, 21 May 2008 19:48:31 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=10#comment-18</guid>
		<description>Thakarthu alliya thakarthu...............</description>
		<content:encoded><![CDATA[<p>Thakarthu alliya thakarthu&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Youtube Interface in Flex &#8212; FxTube by Suresh M</title>
		<link>http://subeesh.wordpress.com/2008/05/20/youtube-interface-in-flex/#comment-17</link>
		<dc:creator>Suresh M</dc:creator>
		<pubDate>Wed, 21 May 2008 11:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=10#comment-17</guid>
		<description>Kidu!!! Good Work Subeesh</description>
		<content:encoded><![CDATA[<p>Kidu!!! Good Work Subeesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Youtube Interface in Flex &#8212; FxTube by Girish G G</title>
		<link>http://subeesh.wordpress.com/2008/05/20/youtube-interface-in-flex/#comment-16</link>
		<dc:creator>Girish G G</dc:creator>
		<pubDate>Wed, 21 May 2008 11:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=10#comment-16</guid>
		<description>Great work buddy!....you rock:)</description>
		<content:encoded><![CDATA[<p>Great work buddy!&#8230;.you rock <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
