<?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 The Gold Hold</title>
	<atom:link href="http://www.thegoldhold.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.thegoldhold.com</link>
	<description>...arrrrrrrgs</description>
	<pubDate>Sun, 05 Sep 2010 06:00:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on When Binding won&#8217;t work with your ArrayCollection by Bookmarks about Flex</title>
		<link>http://www.thegoldhold.com/?p=13#comment-99</link>
		<dc:creator>Bookmarks about Flex</dc:creator>
		<pubDate>Thu, 28 Aug 2008 18:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=13#comment-99</guid>
		<description>[...] - bookmarked by 4 members originally found by panahro on 2008-08-11  When Binding won’t work with your ArrayCollection  http://www.thegoldhold.com/?p=13 - bookmarked by 2 members originally found by nacrofago on [...]</description>
		<content:encoded><![CDATA[<p>[...] - bookmarked by 4 members originally found by panahro on 2008-08-11  When Binding won’t work with your ArrayCollection  <a href="http://www.thegoldhold.com/?p=13" rel="nofollow">http://www.thegoldhold.com/?p=13</a> - bookmarked by 2 members originally found by nacrofago on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lack of Block Scoping in AS3 - Beware by Campbell</title>
		<link>http://www.thegoldhold.com/?p=16#comment-41</link>
		<dc:creator>Campbell</dc:creator>
		<pubDate>Tue, 05 Aug 2008 04:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=16#comment-41</guid>
		<description>yep the compiler breaks variable definitions out of the block and actually declares them at the root of the method, which is why you get the warnings. From memory it has something to do with the way the VM declares variables in memory. Just one of the consessions you have to make to use the VM I guess :(</description>
		<content:encoded><![CDATA[<p>yep the compiler breaks variable definitions out of the block and actually declares them at the root of the method, which is why you get the warnings. From memory it has something to do with the way the VM declares variables in memory. Just one of the consessions you have to make to use the VM I guess <img src='http://www.thegoldhold.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Checkbox DataGrid Component by Sunmi</title>
		<link>http://www.thegoldhold.com/?p=4#comment-35</link>
		<dc:creator>Sunmi</dc:creator>
		<pubDate>Fri, 01 Aug 2008 08:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=4#comment-35</guid>
		<description>:)  Thank you...........</description>
		<content:encoded><![CDATA[<p> <img src='http://www.thegoldhold.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thank you&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Checkbox DataGrid Component by Danny</title>
		<link>http://www.thegoldhold.com/?p=4#comment-33</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Fri, 01 Aug 2008 02:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=4#comment-33</guid>
		<description>Well, using this component you can click the header checkbox in the checkbox column to select/unselect all items. Programmatically you could do

myCheckboxDG.selectedItems = [];</description>
		<content:encoded><![CDATA[<p>Well, using this component you can click the header checkbox in the checkbox column to select/unselect all items. Programmatically you could do</p>
<p>myCheckboxDG.selectedItems = [];</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Checkbox DataGrid Component by Sunmi</title>
		<link>http://www.thegoldhold.com/?p=4#comment-32</link>
		<dc:creator>Sunmi</dc:creator>
		<pubDate>Thu, 31 Jul 2008 07:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=4#comment-32</guid>
		<description>How can unselect all checkbox by click a button...?</description>
		<content:encoded><![CDATA[<p>How can unselect all checkbox by click a button&#8230;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on When Binding won&#8217;t work with your ArrayCollection by Danny</title>
		<link>http://www.thegoldhold.com/?p=13#comment-25</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Wed, 23 Jul 2008 20:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=13#comment-25</guid>
		<description>Oh I definitely agree that sometimes it's simple to reassign a sort/filterFunction like that. The point of the post was more about how refreshing an AC won't fire bindings on that AC reference, most of the time an update data funciton is much more complex than that, and a lot of times you don't want to just reassign your AC reference. For one if you did have listeners registered for COLLECTION_CHANGE, now you have to add those listeners to the new AC because they'd be listening on the old AC. Maybe you don't want the AC passed in to be mutable, most of the time my components keep their own collection around because the caller may not have expected you to add a sort/filter function because they could still be operating on the AC they handed off. All kinds of cases for working through an array, re-assigning the source of an AC, and then calling refresh, just simplified for a blog post :-)</description>
		<content:encoded><![CDATA[<p>Oh I definitely agree that sometimes it&#8217;s simple to reassign a sort/filterFunction like that. The point of the post was more about how refreshing an AC won&#8217;t fire bindings on that AC reference, most of the time an update data funciton is much more complex than that, and a lot of times you don&#8217;t want to just reassign your AC reference. For one if you did have listeners registered for COLLECTION_CHANGE, now you have to add those listeners to the new AC because they&#8217;d be listening on the old AC. Maybe you don&#8217;t want the AC passed in to be mutable, most of the time my components keep their own collection around because the caller may not have expected you to add a sort/filter function because they could still be operating on the AC they handed off. All kinds of cases for working through an array, re-assigning the source of an AC, and then calling refresh, just simplified for a blog post <img src='http://www.thegoldhold.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on When Binding won&#8217;t work with your ArrayCollection by martzobg</title>
		<link>http://www.thegoldhold.com/?p=13#comment-24</link>
		<dc:creator>martzobg</dc:creator>
		<pubDate>Wed, 23 Jul 2008 20:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=13#comment-24</guid>
		<description>I wonder why you would have e problem reassigning the sort. You may do

private function update(newData:ArrayCollection):void
{
   newData.sort = myAC.sort;
   myAC = newData;
}

thus relieving you from headaches due to sever head banging :D It is just simpler...</description>
		<content:encoded><![CDATA[<p>I wonder why you would have e problem reassigning the sort. You may do</p>
<p>private function update(newData:ArrayCollection):void<br />
{<br />
   newData.sort = myAC.sort;<br />
   myAC = newData;<br />
}</p>
<p>thus relieving you from headaches due to sever head banging <img src='http://www.thegoldhold.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> It is just simpler&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Sliding effect by Danny</title>
		<link>http://www.thegoldhold.com/?p=12#comment-14</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Mon, 12 May 2008 20:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=12#comment-14</guid>
		<description>Yeah, this is definitely demoware just showing a possible approach. I believe the issue is that I'm listening for the index changed event, and the new tab is already being displayed before I'm playing the sliding effect.  The best thing to do might be to handle changing the selectedChild in the effects and not use the default Tab behavior which is causing the new tab to become visible on the click.

Definitely a cool site name, I'll look for it to go live.</description>
		<content:encoded><![CDATA[<p>Yeah, this is definitely demoware just showing a possible approach. I believe the issue is that I&#8217;m listening for the index changed event, and the new tab is already being displayed before I&#8217;m playing the sliding effect.  The best thing to do might be to handle changing the selectedChild in the effects and not use the default Tab behavior which is causing the new tab to become visible on the click.</p>
<p>Definitely a cool site name, I&#8217;ll look for it to go live.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Sliding effect by Brett Holcomb</title>
		<link>http://www.thegoldhold.com/?p=12#comment-13</link>
		<dc:creator>Brett Holcomb</dc:creator>
		<pubDate>Mon, 12 May 2008 20:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=12#comment-13</guid>
		<description>I've been playing around a bit with Flex, but I don't have a site up yet (mostly waiting for my brother to add my domain to his host). I registered machinesong.com/.net, which I think sounds cool.

Also, you have a very minor aesthetic issue with your current number flashing to the one you're changing to when you click the tab.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been playing around a bit with Flex, but I don&#8217;t have a site up yet (mostly waiting for my brother to add my domain to his host). I registered machinesong.com/.net, which I think sounds cool.</p>
<p>Also, you have a very minor aesthetic issue with your current number flashing to the one you&#8217;re changing to when you click the tab.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Sliding effect by Random Links Today at AnthonyTanaka.com</title>
		<link>http://www.thegoldhold.com/?p=12#comment-12</link>
		<dc:creator>Random Links Today at AnthonyTanaka.com</dc:creator>
		<pubDate>Fri, 09 May 2008 17:48:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegoldhold.com/?p=12#comment-12</guid>
		<description>[...]  Flex Sliding Tab Navigator [...]</description>
		<content:encoded><![CDATA[<p>[...]  Flex Sliding Tab Navigator [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
