<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Flex, ActionScript and Related Stuffs</title>
	<atom:link href="http://flexrays.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexrays.wordpress.com</link>
	<description>Enjoy!!!!</description>
	<lastBuildDate>Thu, 09 Jul 2009 22:51:22 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on MultiLined Label for a Button by jambo13</title>
		<link>http://flexrays.wordpress.com/2007/04/24/multilined-label-for-a-button/#comment-1465</link>
		<dc:creator>jambo13</dc:creator>
		<pubDate>Thu, 09 Jul 2009 22:51:22 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/04/24/multilined-label-for-a-button/#comment-1465</guid>
		<description>Thanks Darren, that example works for me :-D</description>
		<content:encoded><![CDATA[<p>Thanks Darren, that example works for me <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programming ActionScript 3.0 book download by Ville</title>
		<link>http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1463</link>
		<dc:creator>Ville</dc:creator>
		<pubDate>Sat, 04 Jul 2009 10:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1463</guid>
		<description>thank you very much. :)</description>
		<content:encoded><![CDATA[<p>thank you very much. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programming ActionScript 3.0 book download by Savarimuthu</title>
		<link>http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1458</link>
		<dc:creator>Savarimuthu</dc:creator>
		<pubDate>Thu, 25 Jun 2009 13:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1458</guid>
		<description>Nice</description>
		<content:encoded><![CDATA[<p>Nice</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AutoFilter Search in Flex by Santosh Bhoyar, Hyderabad</title>
		<link>http://flexrays.wordpress.com/2007/08/09/autofilter-search-in-flex/#comment-1455</link>
		<dc:creator>Santosh Bhoyar, Hyderabad</dc:creator>
		<pubDate>Wed, 17 Jun 2009 07:22:12 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/08/09/autofilter-search-in-flex/#comment-1455</guid>
		<description>Here I would like to post the sample example for autofiltering DataGrid. Hope you ppl will enjoy it.


 import mx.collections.ArrayCollection;
            
            [Bindable]
            private var customersArray:ArrayCollection =  new ArrayCollection([
              {FirstName:&quot;Barbara&quot;, LastName:&quot;Jennings&quot;}, 
              {FirstName:&quot;John&quot;, LastName:&quot;Gag&quot;},
              {FirstName:&quot;Joe&quot;, LastName:&quot;Smith&quot;},
              {FirstName:&quot;Brian&quot;, LastName:&quot;Sheridan&quot;},
              {FirstName:&quot;Chris&quot;, LastName:&quot;Sheridan&quot;},
              {FirstName:&quot;Jose&quot;, LastName:&quot;Reyes&quot;},
              {FirstName:&quot;Barbara&quot;, LastName:&quot;Walters&quot;},
              {FirstName:&quot;Bruce&quot;, LastName:&quot;Smith&quot;},
              {FirstName:&quot;Barry&quot;, LastName:&quot;Sanders&quot;},
              {FirstName:&quot;Joe&quot;, LastName:&quot;Montana&quot;},
              {FirstName:&quot;George&quot;, LastName:&quot;Bush&quot;},
              {FirstName:&quot;Jim&quot;, LastName:&quot;Carey&quot;},
              {FirstName:&quot;Roy&quot;, LastName:&quot;Holliday&quot;},
              {FirstName:&quot;Ryan&quot;, LastName:&quot;Braun&quot;},
              {FirstName:&quot;Jimmy&quot;, LastName:&quot;Kimble&quot;},
              {FirstName:&quot;Steve&quot;, LastName:&quot;Weyrick&quot;}
            
            ]);
            
            private function filterContent():void{
                if(txtFilter.text.length == 0){
                    customersArray.filterFunction=null;
                }
                else{
                    customersArray.filterFunction=filterColumn;
                }
                
                customersArray.refresh();
            }
            
            private function filterColumn(item:Object):Boolean{
                var content:String = txtFilter.text.toLowerCase();
                var key:String = item.FirstName.toLowerCase();
                
                if(key.indexOf(content)!=-1){
                    return true
                }
                else{
                    return false
                }
            }


        
        
    
    
    
    </description>
		<content:encoded><![CDATA[<p>Here I would like to post the sample example for autofiltering DataGrid. Hope you ppl will enjoy it.</p>
<p> import mx.collections.ArrayCollection;</p>
<p>            [Bindable]<br />
            private var customersArray:ArrayCollection =  new ArrayCollection([<br />
              {FirstName:"Barbara", LastName:"Jennings"},<br />
              {FirstName:"John", LastName:"Gag"},<br />
              {FirstName:"Joe", LastName:"Smith"},<br />
              {FirstName:"Brian", LastName:"Sheridan"},<br />
              {FirstName:"Chris", LastName:"Sheridan"},<br />
              {FirstName:"Jose", LastName:"Reyes"},<br />
              {FirstName:"Barbara", LastName:"Walters"},<br />
              {FirstName:"Bruce", LastName:"Smith"},<br />
              {FirstName:"Barry", LastName:"Sanders"},<br />
              {FirstName:"Joe", LastName:"Montana"},<br />
              {FirstName:"George", LastName:"Bush"},<br />
              {FirstName:"Jim", LastName:"Carey"},<br />
              {FirstName:"Roy", LastName:"Holliday"},<br />
              {FirstName:"Ryan", LastName:"Braun"},<br />
              {FirstName:"Jimmy", LastName:"Kimble"},<br />
              {FirstName:"Steve", LastName:"Weyrick"}</p>
<p>            ]);</p>
<p>            private function filterContent():void{<br />
                if(txtFilter.text.length == 0){<br />
                    customersArray.filterFunction=null;<br />
                }<br />
                else{<br />
                    customersArray.filterFunction=filterColumn;<br />
                }</p>
<p>                customersArray.refresh();<br />
            }</p>
<p>            private function filterColumn(item:Object):Boolean{<br />
                var content:String = txtFilter.text.toLowerCase();<br />
                var key:String = item.FirstName.toLowerCase();</p>
<p>                if(key.indexOf(content)!=-1){<br />
                    return true<br />
                }<br />
                else{<br />
                    return false<br />
                }<br />
            }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AutoFilter Search in Flex by Prayaga</title>
		<link>http://flexrays.wordpress.com/2007/08/09/autofilter-search-in-flex/#comment-1446</link>
		<dc:creator>Prayaga</dc:creator>
		<pubDate>Tue, 02 Jun 2009 06:24:03 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/08/09/autofilter-search-in-flex/#comment-1446</guid>
		<description>Thank U!!
Very Useful.....
Looking at how to highlight the contents of entered text in the list....</description>
		<content:encoded><![CDATA[<p>Thank U!!<br />
Very Useful&#8230;..<br />
Looking at how to highlight the contents of entered text in the list&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MultiLined Label for a Button by Gautam Bhandarkar</title>
		<link>http://flexrays.wordpress.com/2007/04/24/multilined-label-for-a-button/#comment-1445</link>
		<dc:creator>Gautam Bhandarkar</dc:creator>
		<pubDate>Wed, 27 May 2009 10:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/04/24/multilined-label-for-a-button/#comment-1445</guid>
		<description>just one thing.
one must override updateDisplayList method and specify height and width for textField to reflect multiline label button

override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void 
{
        super.updateDisplayList(unscaledWidth, unscaledHeight);
	textField.y = (this.height-textField.height)+23&gt;&gt;1;
	//textField.y =15;
			
	textField.height=30;
	textField.width=65;
}</description>
		<content:encoded><![CDATA[<p>just one thing.<br />
one must override updateDisplayList method and specify height and width for textField to reflect multiline label button</p>
<p>override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void<br />
{<br />
        super.updateDisplayList(unscaledWidth, unscaledHeight);<br />
	textField.y = (this.height-textField.height)+23&gt;&gt;1;<br />
	//textField.y =15;</p>
<p>	textField.height=30;<br />
	textField.width=65;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Printing DataGrid in Flex by Hugo Pineda</title>
		<link>http://flexrays.wordpress.com/2007/08/08/printing-datagrid-in-flex/#comment-1434</link>
		<dc:creator>Hugo Pineda</dc:creator>
		<pubDate>Sat, 25 Apr 2009 04:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/08/08/printing-datagrid-in-flex/#comment-1434</guid>
		<description>The wordWrap style doesn&#039;t work for me. The cell contents are truncated in odd pages and pair pages don&#039;t have the cell content truncated, instead they have the long row covering the others cells. I&#039;m very dissapointed with the current Flex SDK (3.3) wich having this bug reported, they set the status to &#039;Deferred&#039; (http://bugs.adobe.com/jira/browse/SDK-769)

Thanks anyway for the post. If you have a workaround for this please post it.</description>
		<content:encoded><![CDATA[<p>The wordWrap style doesn&#8217;t work for me. The cell contents are truncated in odd pages and pair pages don&#8217;t have the cell content truncated, instead they have the long row covering the others cells. I&#8217;m very dissapointed with the current Flex SDK (3.3) wich having this bug reported, they set the status to &#8216;Deferred&#8217; (<a href="http://bugs.adobe.com/jira/browse/SDK-769" rel="nofollow">http://bugs.adobe.com/jira/browse/SDK-769</a>)</p>
<p>Thanks anyway for the post. If you have a workaround for this please post it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programming ActionScript 3.0 book download by Amrah</title>
		<link>http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1433</link>
		<dc:creator>Amrah</dc:creator>
		<pubDate>Wed, 22 Apr 2009 00:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1433</guid>
		<description>My name is Miguel Andrade and I&#039;m downloaded the file from your blog :P</description>
		<content:encoded><![CDATA[<p>My name is Miguel Andrade and I&#8217;m downloaded the file from your blog <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programming ActionScript 3.0 book download by EvilPolice</title>
		<link>http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1432</link>
		<dc:creator>EvilPolice</dc:creator>
		<pubDate>Thu, 09 Apr 2009 19:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/07/11/programming-actionscript-30-book-download/#comment-1432</guid>
		<description>Than you. Thats exactly what i need.</description>
		<content:encoded><![CDATA[<p>Than you. Thats exactly what i need.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Run time CSS loading guide by Redni</title>
		<link>http://flexrays.wordpress.com/2007/05/16/run-time-css-loading-guide/#comment-1430</link>
		<dc:creator>Redni</dc:creator>
		<pubDate>Wed, 01 Apr 2009 07:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://flexrays.wordpress.com/2007/05/16/run-time-css-loading-guide/#comment-1430</guid>
		<description>use stylemanager class to change dynamic stylesheet or theme change in flex ,
You can do that by using setstyle and getstyle methods on runtime . 
More details are on this article 


&lt;a href=&#039;http://askmeflash.com/article_m.php?p=article&amp;id=6&#039; rel=&quot;nofollow&quot;&gt;http://askmeflash.com/article_m.php?p=article&amp;id=6&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>use stylemanager class to change dynamic stylesheet or theme change in flex ,<br />
You can do that by using setstyle and getstyle methods on runtime .<br />
More details are on this article </p>
<p><a href='http://askmeflash.com/article_m.php?p=article&amp;id=6' rel="nofollow">http://askmeflash.com/article_m.php?p=article&amp;id=6</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
