<?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/"
		>
<channel>
	<title>Comments on: Adding a background color to a spark Group</title>
	<atom:link href="http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/</link>
	<description>Programming under the influence of Flex</description>
	<lastBuildDate>Sun, 22 Jan 2012 01:08:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Greg</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-9554</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 20 Dec 2011 15:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-9554</guid>
		<description>Thanks. Brand new to Flash Builder and still getting used to layouts. This helped a lot.</description>
		<content:encoded><![CDATA[<p>Thanks. Brand new to Flash Builder and still getting used to layouts. This helped a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: subash</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-7963</link>
		<dc:creator>subash</dc:creator>
		<pubDate>Thu, 03 Nov 2011 19:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-7963</guid>
		<description>Thank you very much. This stuff safed my life :)</description>
		<content:encoded><![CDATA[<p>Thank you very much. This stuff safed my life <img src='http://flexponential.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DB Conner</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-6140</link>
		<dc:creator>DB Conner</dc:creator>
		<pubDate>Fri, 09 Sep 2011 12:57:31 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-6140</guid>
		<description>Another generalized takeaway from this- when you are looking for something in spark classes ... it just may not be there yet. Check mx.

Again, Great post.</description>
		<content:encoded><![CDATA[<p>Another generalized takeaway from this- when you are looking for something in spark classes &#8230; it just may not be there yet. Check mx.</p>
<p>Again, Great post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DB Conner</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-6133</link>
		<dc:creator>DB Conner</dc:creator>
		<pubDate>Thu, 08 Sep 2011 22:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-6133</guid>
		<description>I thought I was going crazy for a minute there... So easy a caveman could do it.

THANKS!</description>
		<content:encoded><![CDATA[<p>I thought I was going crazy for a minute there&#8230; So easy a caveman could do it.</p>
<p>THANKS!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-4901</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Fri, 10 Jun 2011 07:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-4901</guid>
		<description>thx!</description>
		<content:encoded><![CDATA[<p>thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Shongrunden</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-4744</link>
		<dc:creator>Steven Shongrunden</dc:creator>
		<pubDate>Tue, 31 May 2011 02:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-4744</guid>
		<description>&lt;a href=&quot;#comment-4335&quot; rel=&quot;nofollow&quot;&gt;@prakash&lt;/a&gt; - Here is an example in ActionScript:

import mx.graphics.SolidColor;
import spark.components.Group;
import spark.primitives.Rect;

public function addGroup():void {
    var g:Group = new Group();
    var bg:Rect = new Rect();
    bg.fill = new SolidColor(0xFF0000);
    bg.left = 0;
    bg.right = 0;
    bg.top = 0;
    bg.bottom = 0;
    g.addElement(bg);
    addElement(g);
    
    // now add your elements to the Group
    g.addElement(other element);
}</description>
		<content:encoded><![CDATA[<p><a href="#comment-4335" rel="nofollow">@prakash</a> &#8211; Here is an example in ActionScript:</p>
<p>import mx.graphics.SolidColor;<br />
import spark.components.Group;<br />
import spark.primitives.Rect;</p>
<p>public function addGroup():void {<br />
    var g:Group = new Group();<br />
    var bg:Rect = new Rect();<br />
    bg.fill = new SolidColor(0xFF0000);<br />
    bg.left = 0;<br />
    bg.right = 0;<br />
    bg.top = 0;<br />
    bg.bottom = 0;<br />
    g.addElement(bg);<br />
    addElement(g);</p>
<p>    // now add your elements to the Group<br />
    g.addElement(other element);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prakash</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-4335</link>
		<dc:creator>prakash</dc:creator>
		<pubDate>Thu, 05 May 2011 11:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-4335</guid>
		<description>Hi,

How can this be done from AS. i have created a vgroup in AS and i want to set background to it. kindly help in adding background image for the same. 

Regards,
Prakash</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How can this be done from AS. i have created a vgroup in AS and i want to set background to it. kindly help in adding background image for the same. </p>
<p>Regards,<br />
Prakash</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: increpare</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-3324</link>
		<dc:creator>increpare</dc:creator>
		<pubDate>Wed, 23 Feb 2011 17:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-3324</guid>
		<description>thanks for this
&lt;3</description>
		<content:encoded><![CDATA[<p>thanks for this<br />
&lt;3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vamsi</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-1621</link>
		<dc:creator>Vamsi</dc:creator>
		<pubDate>Tue, 14 Sep 2010 05:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-1621</guid>
		<description>Its better to use this way, as bordercontaienr is bit heavy when compared to group + Rect</description>
		<content:encoded><![CDATA[<p>Its better to use this way, as bordercontaienr is bit heavy when compared to group + Rect</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: felix</title>
		<link>http://flexponential.com/2009/11/23/adding-a-background-color-to-a-spark-group/comment-page-1/#comment-1208</link>
		<dc:creator>felix</dc:creator>
		<pubDate>Wed, 02 Jun 2010 01:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://flexponential.com/?p=260#comment-1208</guid>
		<description>Or use a &#039;BorderContainer&#039; instead of a group and specify the &#039;backgroundColor&#039;.</description>
		<content:encoded><![CDATA[<p>Or use a &#8216;BorderContainer&#8217; instead of a group and specify the &#8216;backgroundColor&#8217;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

