<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Using the Flex TileList class&#8217;s new dataChangeEffect style in Flex 3</title>
	<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/</link>
	<description>A bunch of examples for Adobe Flex and ActionScript</description>
	<pubDate>Sat, 05 Jul 2008 10:24:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: Eddie</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-12268</link>
		<author>Eddie</author>
		<pubDate>Thu, 24 Apr 2008 19:37:32 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-12268</guid>
		<description>Hi Flashguitou and many others.

About this problem - I found solution.
So as we can see there:
http://livedocs.adobe.com/flex/2/langref/flash/events/IEventDispatcher.html
This problem occurs frequently when transferring complex objects using AMF when the object returned from the server contains an array or array collection of more objects..
So...go to the practice. If U have an Array wich couse this problrm simply call after the Array creation next function:

private function resultHandler(result:Array): void
{
  for(var i:String in result)
  {
    result[i] = new ObjectProxy(result[i]);
  }
  var targetArrayCollection: ArrayCollection = new ArrayCollection(result);
}

thats it. problem is solved.
If any questions - please ask.
Yuriy.</description>
		<content:encoded><![CDATA[<p>Hi Flashguitou and many others.</p>
<p>About this problem - I found solution.<br />
So as we can see there:<br />
<a href="http://livedocs.adobe.com/flex/2/langref/flash/events/IEventDispatcher.html" rel="nofollow">http://livedocs.adobe.com/flex/2/langref/flash/events/IEventDispatcher.html</a><br />
This problem occurs frequently when transferring complex objects using AMF when the object returned from the server contains an array or array collection of more objects..<br />
So&#8230;go to the practice. If U have an Array wich couse this problrm simply call after the Array creation next function:</p>
<p>private function resultHandler(result:Array): void<br />
{<br />
  for(var i:String in result)<br />
  {<br />
    result[i] = new ObjectProxy(result[i]);<br />
  }<br />
  var targetArrayCollection: ArrayCollection = new ArrayCollection(result);<br />
}</p>
<p>thats it. problem is solved.<br />
If any questions - please ask.<br />
Yuriy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashguitou</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-11253</link>
		<author>Flashguitou</author>
		<pubDate>Tue, 08 Apr 2008 14:05:59 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-11253</guid>
		<description>great !

but i have got this trouble -&#62; 
warning: unable to bind to property 'label' on class 'Object' (class is not an IEventDispatcher)
warning: unable to bind to property 'source' on class 'Object' (class is not an IEventDispatcher)

So can i do to fix it ?

Thanks !!!</description>
		<content:encoded><![CDATA[<p>great !</p>
<p>but i have got this trouble -&gt;<br />
warning: unable to bind to property &#8216;label&#8217; on class &#8216;Object&#8217; (class is not an IEventDispatcher)<br />
warning: unable to bind to property &#8217;source&#8217; on class &#8216;Object&#8217; (class is not an IEventDispatcher)</p>
<p>So can i do to fix it ?</p>
<p>Thanks !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rconceiver</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-9658</link>
		<author>rconceiver</author>
		<pubDate>Thu, 03 Apr 2008 08:56:52 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-9658</guid>
		<description>hi peter,
can u tell me why the last row is clickable, when the code is for itemclick only...
thanks
rconceiver</description>
		<content:encoded><![CDATA[<p>hi peter,<br />
can u tell me why the last row is clickable, when the code is for itemclick only&#8230;<br />
thanks<br />
rconceiver</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-7882</link>
		<author>Jon</author>
		<pubDate>Tue, 25 Mar 2008 15:00:19 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-7882</guid>
		<description>I've been trying to make a drag n drop from one TileList to another work without success, the images drag fine but the text becomes [Object Object] unless I enable dragMoveEnable in both TileLists. The code is pretty much what you have in this example except a different data source and 2 TileLists, I also tried changing this example to match mine which leads to the same error + that it stops working after 1 move for some reason.

The project I'm working with does not work if I have to move the tiles, have to make copies. Any help would be appreciated!

Great tutorials on this site btw!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been trying to make a drag n drop from one TileList to another work without success, the images drag fine but the text becomes [Object Object] unless I enable dragMoveEnable in both TileLists. The code is pretty much what you have in this example except a different data source and 2 TileLists, I also tried changing this example to match mine which leads to the same error + that it stops working after 1 move for some reason.</p>
<p>The project I&#8217;m working with does not work if I have to move the tiles, have to make copies. Any help would be appreciated!</p>
<p>Great tutorials on this site btw!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos G.</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-7789</link>
		<author>Carlos G.</author>
		<pubDate>Sat, 22 Mar 2008 01:13:49 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-7789</guid>
		<description>Any chance to see data effects with filterfunction?

I can't get to work correct the arraycollection sync

Thanks in advance

CG</description>
		<content:encoded><![CDATA[<p>Any chance to see data effects with filterfunction?</p>
<p>I can&#8217;t get to work correct the arraycollection sync</p>
<p>Thanks in advance</p>
<p>CG</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-5171</link>
		<author>Anonymous</author>
		<pubDate>Mon, 17 Dec 2007 11:06:11 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-5171</guid>
		<description>As of Flex Builder Beta 3 dataChangeEffect is replaced by itemsChangeEffect</description>
		<content:encoded><![CDATA[<p>As of Flex Builder Beta 3 dataChangeEffect is replaced by itemsChangeEffect</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clark</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-4760</link>
		<author>Clark</author>
		<pubDate>Wed, 05 Dec 2007 08:52:32 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-4760</guid>
		<description>Is there anyway to make it so a similar effect gets called when say the columnCount changes so the the move to the new position is animated and not just shifted over if you change the width of the tileList.</description>
		<content:encoded><![CDATA[<p>Is there anyway to make it so a similar effect gets called when say the columnCount changes so the the move to the new position is animated and not just shifted over if you change the width of the tileList.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-4129</link>
		<author>peterd</author>
		<pubDate>Wed, 14 Nov 2007 07:42:34 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-4129</guid>
		<description>Sonny,

Sorry, this was added in Flex 3. It isn't available in the Flex 2 API.

Peter</description>
		<content:encoded><![CDATA[<p>Sonny,</p>
<p>Sorry, this was added in Flex 3. It isn&#8217;t available in the Flex 2 API.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonny</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-4128</link>
		<author>Sonny</author>
		<pubDate>Wed, 14 Nov 2007 07:34:32 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-4128</guid>
		<description>hi,is this work on flex 2.0?</description>
		<content:encoded><![CDATA[<p>hi,is this work on flex 2.0?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dormouse</title>
		<link>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-3596</link>
		<author>dormouse</author>
		<pubDate>Thu, 25 Oct 2007 11:10:41 +0000</pubDate>
		<guid>http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-flex-3/#comment-3596</guid>
		<description>Very cool, enjoy it</description>
		<content:encoded><![CDATA[<p>Very cool, enjoy it</p>
]]></content:encoded>
	</item>
</channel>
</rss>
