<?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: ActionScript 3 Bindable Dynamic Objects</title>
	<atom:link href="http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/feed/" rel="self" type="application/rss+xml" />
	<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/</link>
	<description>Flex, AIR, PHP, etc.</description>
	<lastBuildDate>Fri, 12 Mar 2010 23:40:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jacob Wright</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-9079</link>
		<dc:creator>Jacob Wright</dc:creator>
		<pubDate>Wed, 03 Mar 2010 16:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-9079</guid>
		<description>Laurence, by implementing the other Proxy methods that allow one to iterate over an object (for-i-in) you can allow that to happen. However, if you are using Flex, ObjectProxy is already there for you. Just use ObjectProxy for your dynamic bindable value objects.</description>
		<content:encoded><![CDATA[<p>Laurence, by implementing the other Proxy methods that allow one to iterate over an object (for-i-in) you can allow that to happen. However, if you are using Flex, ObjectProxy is already there for you. Just use ObjectProxy for your dynamic bindable value objects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurence</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-9078</link>
		<dc:creator>Laurence</dc:creator>
		<pubDate>Wed, 03 Mar 2010 08:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-9078</guid>
		<description>Well, this is kind of what I need.  A dynamically-created object.  Except what I really need is a dynamically-created Value Object that I can pass back-and-forth between my Flex app and the ColdFusion9 back-end.  I just can&#039;t wrap my head around how to do that, though.  Can you tell me how to adapt your bindable dynamic object into a bindable dynamic value object that will work with CF9?  Is that even possible?</description>
		<content:encoded><![CDATA[<p>Well, this is kind of what I need.  A dynamically-created object.  Except what I really need is a dynamically-created Value Object that I can pass back-and-forth between my Flex app and the ColdFusion9 back-end.  I just can&#8217;t wrap my head around how to do that, though.  Can you tell me how to adapt your bindable dynamic object into a bindable dynamic value object that will work with CF9?  Is that even possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BubbleBoy</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-8884</link>
		<dc:creator>BubbleBoy</dc:creator>
		<pubDate>Wed, 16 Dec 2009 20:44:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-8884</guid>
		<description>Thanks man! I just started building this very concept, got stuck and found this. Supernice!</description>
		<content:encoded><![CDATA[<p>Thanks man! I just started building this very concept, got stuck and found this. Supernice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Polaco</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-8664</link>
		<dc:creator>Polaco</dc:creator>
		<pubDate>Mon, 02 Nov 2009 17:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-8664</guid>
		<description>thanks for this usefull code. works beautiful!!!</description>
		<content:encoded><![CDATA[<p>thanks for this usefull code. works beautiful!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Wolever</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-8402</link>
		<dc:creator>David Wolever</dc:creator>
		<pubDate>Thu, 11 Jun 2009 19:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-8402</guid>
		<description>Ah, this is just what I needed – thanks.

I&#039;ve tweaked it a bit, though, to make it &quot;behave&quot; like a normal object: added a toString method (otherwise you get an unhelpful &quot;The Proxy class does not implement callProperty...&quot; error) and inherited from IUID so it will play well with List UI Components.

Take a look at the code here: http://wolever.net/~wolever/BindableObject.as

Also, would you mind formally releasing this code either into the public domain or a liberal MIT-esque license, to alleviate any possible concern with using it?

Thanks!

David</description>
		<content:encoded><![CDATA[<p>Ah, this is just what I needed – thanks.</p>
<p>I&#8217;ve tweaked it a bit, though, to make it &#8220;behave&#8221; like a normal object: added a toString method (otherwise you get an unhelpful &#8220;The Proxy class does not implement callProperty&#8230;&#8221; error) and inherited from IUID so it will play well with List UI Components.</p>
<p>Take a look at the code here: <a href="http://wolever.net/~wolever/BindableObject.as" rel="nofollow">http://wolever.net/~wolever/BindableObject.as</a></p>
<p>Also, would you mind formally releasing this code either into the public domain or a liberal MIT-esque license, to alleviate any possible concern with using it?</p>
<p>Thanks!</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mathieu</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-8314</link>
		<dc:creator>Mathieu</dc:creator>
		<pubDate>Mon, 20 Apr 2009 14:42:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-8314</guid>
		<description>Thanks for this script.
But if you working with boolean and it&#039;s &quot;false&quot; you get the name of your property.
I just modify getProperty function to not return name.
use
  return strings[name];
instead of
  return strings[name] &#124;&#124; name;</description>
		<content:encoded><![CDATA[<p>Thanks for this script.<br />
But if you working with boolean and it&#8217;s &#8220;false&#8221; you get the name of your property.<br />
I just modify getProperty function to not return name.<br />
use<br />
  return strings[name];<br />
instead of<br />
  return strings[name] || name;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Werbeagentur</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-8256</link>
		<dc:creator>Werbeagentur</dc:creator>
		<pubDate>Thu, 05 Mar 2009 19:19:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-8256</guid>
		<description>Hi Jac, nice Script, we will implement it in our new Project www.scooble.de

thx,
mo</description>
		<content:encoded><![CDATA[<p>Hi Jac, nice Script, we will implement it in our new Project <a href="http://www.scooble.de" rel="nofollow">http://www.scooble.de</a></p>
<p>thx,<br />
mo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex: Dynamic, bindable value objects &#171; Justin J. Moses : Blog</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-8136</link>
		<dc:creator>Flex: Dynamic, bindable value objects &#171; Justin J. Moses : Blog</dc:creator>
		<pubDate>Thu, 09 Oct 2008 23:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-8136</guid>
		<description>[...] normal value object, but you make it dynamic and you will need to extend Proxy to make it bindable. See this solution here. (I&#8217;ve also read this solution in the Flex 3 [...]</description>
		<content:encoded><![CDATA[<p>[...] normal value object, but you make it dynamic and you will need to extend Proxy to make it bindable. See this solution here. (I&#8217;ve also read this solution in the Flex 3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob Wright</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-7782</link>
		<dc:creator>Jacob Wright</dc:creator>
		<pubDate>Mon, 07 Apr 2008 15:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-7782</guid>
		<description>Thanks Rob for the catch, it should be:

date.getDay() % 10 == 3 &amp;&amp; date.getDay() != 13

Fixed.</description>
		<content:encoded><![CDATA[<p>Thanks Rob for the catch, it should be:</p>
<p>date.getDay() % 10 == 3 &#038;&#038; date.getDay() != 13</p>
<p>Fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/comment-page-1/#comment-7778</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 04 Apr 2008 11:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/54/actionscript-3-bindable-dynamic-objects/#comment-7778</guid>
		<description>Sorry got that wrong too:

It should be 

date.getDay() % 10 == 13 &amp;&amp; date.getDay() != 3

rather than

date.getDay() % 10 == 13 &amp;&amp; date.getDay() != 1

The 3 to 1</description>
		<content:encoded><![CDATA[<p>Sorry got that wrong too:</p>
<p>It should be </p>
<p>date.getDay() % 10 == 13 &amp;&amp; date.getDay() != 3</p>
<p>rather than</p>
<p>date.getDay() % 10 == 13 &amp;&amp; date.getDay() != 1</p>
<p>The 3 to 1</p>
]]></content:encoded>
	</item>
</channel>
</rss>
