<?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: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>Comments for Flex In Action</title>
	<atom:link href="http://flexinaction.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexinaction.wordpress.com</link>
	<description>Become Effective Fast with Flex</description>
	<lastBuildDate>Wed, 27 Jul 2011 17:12:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Default item renderers by Ben</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-445</link>
		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 17:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-445</guid>
		<description><![CDATA[Tariq,

left a couple of comments for Charan, but didn&#039;t realize that the mxml code is stripped out.  Maybe you can fix.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Tariq,</p>
<p>left a couple of comments for Charan, but didn&#8217;t realize that the mxml code is stripped out.  Maybe you can fix.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default item renderers by Ben</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-444</link>
		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 16:39:47 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-444</guid>
		<description><![CDATA[Charan,

making the changes to the  tag and the id description, as described in my previous reply to you should eliminate the error.

Ben]]></description>
		<content:encoded><![CDATA[<p>Charan,</p>
<p>making the changes to the  tag and the id description, as described in my previous reply to you should eliminate the error.</p>
<p>Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default item renderers by Ben</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-443</link>
		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 16:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-443</guid>
		<description><![CDATA[Charan,

Listing 10.4: Utilizing the Spark ItemRenderer Object:

Replace the  code as follows -

            

-  Adobe has made a decision to use the  rather than .  See the following: http://opensource.adobe.com/wiki/display/flexsdk/Spark+Text+Primitives+Decision  . Whenever you see the  tag in the book, just replace with .  Additionally, if you just name the id=&quot;label&quot;, I find that this will also trigger the component error.  Changing the label id to something more unique like &quot;mylabel&quot; worked for me.

Listing 10.5: Spark  item renderer object implementation

The images are not showing up because the path to the image source has a small typo.  Simply change the path by adding &quot;../&quot; before each imgSource description.  Once done, your code should read like the following:  
                      imgSource = &quot;../assets/IMG_0325.JPG&quot;

Cheers,

Ben]]></description>
		<content:encoded><![CDATA[<p>Charan,</p>
<p>Listing 10.4: Utilizing the Spark ItemRenderer Object:</p>
<p>Replace the  code as follows -</p>
<p>-  Adobe has made a decision to use the  rather than .  See the following: <a href="http://opensource.adobe.com/wiki/display/flexsdk/Spark+Text+Primitives+Decision" rel="nofollow">http://opensource.adobe.com/wiki/display/flexsdk/Spark+Text+Primitives+Decision</a>  . Whenever you see the  tag in the book, just replace with .  Additionally, if you just name the id=&#8221;label&#8221;, I find that this will also trigger the component error.  Changing the label id to something more unique like &#8220;mylabel&#8221; worked for me.</p>
<p>Listing 10.5: Spark  item renderer object implementation</p>
<p>The images are not showing up because the path to the image source has a small typo.  Simply change the path by adding &#8220;../&#8221; before each imgSource description.  Once done, your code should read like the following:<br />
                      imgSource = &#8220;../assets/IMG_0325.JPG&#8221;</p>
<p>Cheers,</p>
<p>Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default item renderers by Tariq Ahmed</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-442</link>
		<dc:creator><![CDATA[Tariq Ahmed]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 02:16:41 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-442</guid>
		<description><![CDATA[Thanks Ben, appreciate it!]]></description>
		<content:encoded><![CDATA[<p>Thanks Ben, appreciate it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default item renderers by Ben</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-440</link>
		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 01:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-440</guid>
		<description><![CDATA[Listing 9.6 Custom Spark List component MXML code (MyCustomList.mxml)

Tariq, this is how I made the code work.  - replaced SimpleText with Label, and changed the selectionChanging event since that didn&#039;t seem to work for me.  Also added an HGroup for the items, and changed the reference to the image paths. 

Really appreciate the effort you guys put into the book.

Ben



	
	
		
	
	
		&lt;!-- Place non-visual elements (e.g., services, value objects) here --&gt;
	
	
	
		
		
		
			
			
			
				
					
						
							
							
							
						
						
							
								
							
						
						
							
							
						

					
				
			
			
				
					
					
					
				
			
		
	
]]></description>
		<content:encoded><![CDATA[<p>Listing 9.6 Custom Spark List component MXML code (MyCustomList.mxml)</p>
<p>Tariq, this is how I made the code work.  &#8211; replaced SimpleText with Label, and changed the selectionChanging event since that didn&#8217;t seem to work for me.  Also added an HGroup for the items, and changed the reference to the image paths. </p>
<p>Really appreciate the effort you guys put into the book.</p>
<p>Ben</p>
<p>		<!-- Place non-visual elements (e.g., services, value objects) here --></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default item renderers by Ben</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-439</link>
		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Mon, 25 Jul 2011 17:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-439</guid>
		<description><![CDATA[6.2.11 ZipCodeValidator

Error:  ... use the domain property, which can be either US Only, US, or Canada.

Should be:  ... use the domain property, which can be either US Only, US or Canada, or Canada Only.

Thanks for a great book, Tariq.

Ben]]></description>
		<content:encoded><![CDATA[<p>6.2.11 ZipCodeValidator</p>
<p>Error:  &#8230; use the domain property, which can be either US Only, US, or Canada.</p>
<p>Should be:  &#8230; use the domain property, which can be either US Only, US or Canada, or Canada Only.</p>
<p>Thanks for a great book, Tariq.</p>
<p>Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default item renderers by charan</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-431</link>
		<dc:creator><![CDATA[charan]]></dc:creator>
		<pubDate>Sun, 26 Jun 2011 10:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-431</guid>
		<description><![CDATA[

	
	
		
	
	
	
	
	
	
	





I just found any error saying : Description	Resource	Path	Location	Type
Could not resolve  to a component implementation.	TileGroupIR.mxml	/FlexInAction/src	line 11	Flex Problem]]></description>
		<content:encoded><![CDATA[<p>I just found any error saying : Description	Resource	Path	Location	Type<br />
Could not resolve  to a component implementation.	TileGroupIR.mxml	/FlexInAction/src	line 11	Flex Problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default item renderers by charan</title>
		<link>http://flexinaction.wordpress.com/2011/01/11/default-item-renderers/#comment-429</link>
		<dc:creator><![CDATA[charan]]></dc:creator>
		<pubDate>Sun, 26 Jun 2011 10:45:38 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=110#comment-429</guid>
		<description><![CDATA[am just going through 10th chapter of FlexInAction : and i found that am unable to use ,
SimpleText control   , and unable to display images using BitMapImage controls ,..totally am unable to execute first example of item Renderers of 10.2.1(spark mxml item renderers ) ..with my Flash builder 4 and 4.5 ....does trail version have any defect or do am unaware of something else ??]]></description>
		<content:encoded><![CDATA[<p>am just going through 10th chapter of FlexInAction : and i found that am unable to use ,<br />
SimpleText control   , and unable to display images using BitMapImage controls ,..totally am unable to execute first example of item Renderers of 10.2.1(spark mxml item renderers ) ..with my Flash builder 4 and 4.5 &#8230;.does trail version have any defect or do am unaware of something else ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex 3 in Action co-author&#8217;s Android Marketplace featured in Wired by Tariq Ahmed</title>
		<link>http://flexinaction.wordpress.com/2010/06/11/flex-3-in-action-co-authors-android-marketplace-featured-in-wired/#comment-353</link>
		<dc:creator><![CDATA[Tariq Ahmed]]></dc:creator>
		<pubDate>Fri, 11 Jun 2010 22:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=94#comment-353</guid>
		<description><![CDATA[A similar article:

http://www.mobilemarketingwatch.com/independent-app-stores-showing-up-in-android-market-7345/]]></description>
		<content:encoded><![CDATA[<p>A similar article:</p>
<p><a href="http://www.mobilemarketingwatch.com/independent-app-stores-showing-up-in-android-market-7345/" rel="nofollow">http://www.mobilemarketingwatch.com/independent-app-stores-showing-up-in-android-market-7345/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex 4 In Action Status updates by Tariq Ahmed</title>
		<link>http://flexinaction.wordpress.com/2010/01/30/flex-4-in-action-status-updates/#comment-297</link>
		<dc:creator><![CDATA[Tariq Ahmed]]></dc:creator>
		<pubDate>Sun, 07 Feb 2010 02:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://flexinaction.com/?p=75#comment-297</guid>
		<description><![CDATA[Hi Stephan thanks. I believe your copy of the book will have a unique code to download the Flex 3 in Action PDF.]]></description>
		<content:encoded><![CDATA[<p>Hi Stephan thanks. I believe your copy of the book will have a unique code to download the Flex 3 in Action PDF.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

