<?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 on: SuperPanelPlus: Resizable Flex Panel Component with Accessible Styling</title>
	<atom:link href="http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/feed/" rel="self" type="application/rss+xml" />
	<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/</link>
	<description>"Test until fear turns to boredom"</description>
	<pubDate>Tue, 06 Jan 2009 12:31:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Joel</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-2134</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Mon, 06 Oct 2008 21:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-2134</guid>
		<description>styleColor should do it Adam.</description>
		<content:encoded><![CDATA[<p>styleColor should do it Adam.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-2133</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Mon, 06 Oct 2008 20:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-2133</guid>
		<description>What attribute do I modify to change the color of the panel window border?  I don't want it to be black.  Sorry for the elementary question...</description>
		<content:encoded><![CDATA[<p>What attribute do I modify to change the color of the panel window border?  I don&#8217;t want it to be black.  Sorry for the elementary question&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DomPazz</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-1665</link>
		<dc:creator>DomPazz</dc:creator>
		<pubDate>Sat, 06 Sep 2008 03:09:33 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-1665</guid>
		<description>Thanks for this!  How hard would it be to add a minimize button?

Also, I couldn't get what Jamie above suggests to work.  I was able to add an event listener for FlexEvent.CREATION_COMPLETE and have the handler function call "positionChildren()".  That seems to fix the issue.

Add this line to "addListeners":
this.addEventListener(FlexEvent.CREATION_COMPLETE, posKids);

Then add this to the class:
private function posKids(evt:Event):void{
   this.positionChildren();
}</description>
		<content:encoded><![CDATA[<p>Thanks for this!  How hard would it be to add a minimize button?</p>
<p>Also, I couldn&#8217;t get what Jamie above suggests to work.  I was able to add an event listener for FlexEvent.CREATION_COMPLETE and have the handler function call &#8220;positionChildren()&#8221;.  That seems to fix the issue.</p>
<p>Add this line to &#8220;addListeners&#8221;:<br />
this.addEventListener(FlexEvent.CREATION_COMPLETE, posKids);</p>
<p>Then add this to the class:<br />
private function posKids(evt:Event):void{<br />
   this.positionChildren();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-817</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Thu, 29 May 2008 13:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-817</guid>
		<description>I noticed that too and forgot to mention it, thanks for tracking it down and posting the solution Jamie.</description>
		<content:encoded><![CDATA[<p>I noticed that too and forgot to mention it, thanks for tracking it down and posting the solution Jamie.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Badman</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-816</link>
		<dc:creator>Jamie Badman</dc:creator>
		<pubDate>Thu, 29 May 2008 10:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-816</guid>
		<description>... after you've inserted 'this.positionChildren();' at the end of initPos!</description>
		<content:encoded><![CDATA[<p>&#8230; after you&#8217;ve inserted &#8216;this.positionChildren();&#8217; at the end of initPos!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Badman</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-815</link>
		<dc:creator>Jamie Badman</dc:creator>
		<pubDate>Thu, 29 May 2008 09:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-815</guid>
		<description>Ah - figured out why it happens - I was using width and height percentages rather than explicit values - seems the percent approach causes this problem. Calling initPos seems to sort things out though ;-)</description>
		<content:encoded><![CDATA[<p>Ah - figured out why it happens - I was using width and height percentages rather than explicit values - seems the percent approach causes this problem. Calling initPos seems to sort things out though <img src='http://joelhooks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Badman</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-814</link>
		<dc:creator>Jamie Badman</dc:creator>
		<pubDate>Thu, 29 May 2008 09:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-814</guid>
		<description>Looks great - though I found when I used it in my own app, the 'close', 'max' and 'resize' icons initially appeared off the top left of the panel. Wasn't until I moved the panel around and clicked on one of them that they suddenly moved into their correct positions. Any ideas?!</description>
		<content:encoded><![CDATA[<p>Looks great - though I found when I used it in my own app, the &#8216;close&#8217;, &#8216;max&#8217; and &#8216;resize&#8217; icons initially appeared off the top left of the panel. Wasn&#8217;t until I moved the panel around and clicked on one of them that they suddenly moved into their correct positions. Any ideas?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garth Somerville</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-796</link>
		<dc:creator>Garth Somerville</dc:creator>
		<pubDate>Tue, 27 May 2008 01:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-796</guid>
		<description>Looks great Joel and very useful.  Just one small thing I see -- if you could add an x and y offset for the resize cursor in the call to cursorManager.setCursor() I think it would improve the feel of resizing the panel.</description>
		<content:encoded><![CDATA[<p>Looks great Joel and very useful.  Just one small thing I see &#8212; if you could add an x and y offset for the resize cursor in the call to cursorManager.setCursor() I think it would improve the feel of resizing the panel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ved</title>
		<link>http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-795</link>
		<dc:creator>Ved</dc:creator>
		<pubDate>Mon, 26 May 2008 22:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessible-styling/#comment-795</guid>
		<description>Very Nice... seems fast! Congrats!

Ved</description>
		<content:encoded><![CDATA[<p>Very Nice&#8230; seems fast! Congrats!</p>
<p>Ved</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.203 seconds -->
