<?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: Flex Bindings in AS3 Projects</title>
	<atom:link href="http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/</link>
	<description>There is no universally agreed-upon biological definition of dreaming</description>
	<lastBuildDate>Wed, 28 Jul 2010 11:46:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Urban Classics</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1133</link>
		<dc:creator>Urban Classics</dc:creator>
		<pubDate>Tue, 27 Jul 2010 02:28:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1133</guid>
		<description>Yes, essentially what the SignalDataBinding API buys you is the ability to implement data binding in AS3 projects. I wouldn’t necessarily suggest using it in place of Data Binding in Flex, however if ever Signals were being used exclusively and data binding was needed the SignalDataBinding API would provide a convenient solution.</description>
		<content:encoded><![CDATA[<p>Yes, essentially what the SignalDataBinding API buys you is the ability to implement data binding in AS3 projects. I wouldn’t necessarily suggest using it in place of Data Binding in Flex, however if ever Signals were being used exclusively and data binding was needed the SignalDataBinding API would provide a convenient solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magnetschmuck</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1132</link>
		<dc:creator>Magnetschmuck</dc:creator>
		<pubDate>Tue, 27 Jul 2010 02:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1132</guid>
		<description>This was more or less an exercise resulting from my evaluation of AS3 Signals to see what they have to offer. To be honest, I wouldn’t use it over Binding in Flex. However, I wanted to publish the API as I do feel it would provide value for those who might disregard AS3 Signals because of data binding limitations. This would also suit non-Flex projects well. One argument which I feel would warrant the use of AS3 Signals over Flex data binding would be if something a bit more light weight was warranted (for instance, where event bubbling isn’t necessary, such as in the PM examples).</description>
		<content:encoded><![CDATA[<p>This was more or less an exercise resulting from my evaluation of AS3 Signals to see what they have to offer. To be honest, I wouldn’t use it over Binding in Flex. However, I wanted to publish the API as I do feel it would provide value for those who might disregard AS3 Signals because of data binding limitations. This would also suit non-Flex projects well. One argument which I feel would warrant the use of AS3 Signals over Flex data binding would be if something a bit more light weight was warranted (for instance, where event bubbling isn’t necessary, such as in the PM examples).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Garland</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1114</link>
		<dc:creator>Matt Garland</dc:creator>
		<pubDate>Tue, 15 Jun 2010 23:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1114</guid>
		<description>1--BindingUtils is 4k.

2--BindingUtils does work dandy for AS3 projects. you can also import BindingUtils into a fla/document project, but it won&#039;t work, because the Flash IDE won&#039;t write code for the binding metadata.</description>
		<content:encoded><![CDATA[<p>1&#8211;BindingUtils is 4k.</p>
<p>2&#8211;BindingUtils does work dandy for AS3 projects. you can also import BindingUtils into a fla/document project, but it won&#8217;t work, because the Flash IDE won&#8217;t write code for the binding metadata.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neil</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1112</link>
		<dc:creator>neil</dc:creator>
		<pubDate>Mon, 07 Jun 2010 21:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1112</guid>
		<description>i have been trying to make the code below work. no success. it is an actionscript file not flex.
ChangeWatcher.canWatch(buttons, &quot;left&quot;); always give &#039;false&#039;.
------------------------------------------------
import mx.binding.utils.ChangeWatcher;
import mx.events.FlexEvent;
import mx.events.PropertyChangeEvent;

var buttons:Object = {left:0, right:0};

var watchable:Boolean = ChangeWatcher.canWatch(buttons, &quot;left&quot;);
ChangeWatcher.watch(buttons, &quot;left&quot;, fnWatch);
function fnWatch(e:PropertyChangeEvent){
	trace(&quot;buttons changed&quot;);
};
trace(&quot;watchable &quot; + watchable.toString());

test1_btn.addEventListener(MouseEvent.CLICK, leftClicked);
function leftClicked(e:MouseEvent){
	buttons.left = (buttons.left + 1)%2;
};
test2_btn.addEventListener(MouseEvent.CLICK, rightClicked);
function rightClicked(e:MouseEvent){
	buttons.right = (buttons.right + 1)%2;
};</description>
		<content:encoded><![CDATA[<p>i have been trying to make the code below work. no success. it is an actionscript file not flex.<br />
ChangeWatcher.canWatch(buttons, &#8220;left&#8221;); always give &#8216;false&#8217;.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
import mx.binding.utils.ChangeWatcher;<br />
import mx.events.FlexEvent;<br />
import mx.events.PropertyChangeEvent;</p>
<p>var buttons:Object = {left:0, right:0};</p>
<p>var watchable:Boolean = ChangeWatcher.canWatch(buttons, &#8220;left&#8221;);<br />
ChangeWatcher.watch(buttons, &#8220;left&#8221;, fnWatch);<br />
function fnWatch(e:PropertyChangeEvent){<br />
	trace(&#8220;buttons changed&#8221;);<br />
};<br />
trace(&#8220;watchable &#8221; + watchable.toString());</p>
<p>test1_btn.addEventListener(MouseEvent.CLICK, leftClicked);<br />
function leftClicked(e:MouseEvent){<br />
	buttons.left = (buttons.left + 1)%2;<br />
};<br />
test2_btn.addEventListener(MouseEvent.CLICK, rightClicked);<br />
function rightClicked(e:MouseEvent){<br />
	buttons.right = (buttons.right + 1)%2;<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rechnung schreiben</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1103</link>
		<dc:creator>Rechnung schreiben</dc:creator>
		<pubDate>Fri, 16 Apr 2010 19:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1103</guid>
		<description>Nice article, very interesting. thanks</description>
		<content:encoded><![CDATA[<p>Nice article, very interesting. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Netyu</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1084</link>
		<dc:creator>Netyu</dc:creator>
		<pubDate>Thu, 11 Mar 2010 11:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1084</guid>
		<description>Great article :-) and best regards!!!</description>
		<content:encoded><![CDATA[<p>Great article <img src='http://www.dreaminginflash.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  and best regards!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Easyfinanz24</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1077</link>
		<dc:creator>Easyfinanz24</dc:creator>
		<pubDate>Fri, 12 Feb 2010 14:51:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1077</guid>
		<description>Yes please, keep me updated also! Great article - Best Regards from germany ;-)</description>
		<content:encoded><![CDATA[<p>Yes please, keep me updated also! Great article &#8211; Best Regards from germany <img src='http://www.dreaminginflash.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kaufen und Sparen</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1076</link>
		<dc:creator>Kaufen und Sparen</dc:creator>
		<pubDate>Thu, 11 Feb 2010 18:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1076</guid>
		<description>Actually learned something new, works nicely.</description>
		<content:encoded><![CDATA[<p>Actually learned something new, works nicely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Etikettendrucker</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1054</link>
		<dc:creator>Etikettendrucker</dc:creator>
		<pubDate>Mon, 02 Nov 2009 16:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1054</guid>
		<description>Hey, very interesting. Are there any news on it, yet?</description>
		<content:encoded><![CDATA[<p>Hey, very interesting. Are there any news on it, yet?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alleinunterhalter KÃ¶ln</title>
		<link>http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/comment-page-1/#comment-1051</link>
		<dc:creator>Alleinunterhalter KÃ¶ln</dc:creator>
		<pubDate>Mon, 26 Oct 2009 17:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=155#comment-1051</guid>
		<description>Great job, its a interesting thing.</description>
		<content:encoded><![CDATA[<p>Great job, its a interesting thing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
