<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Simple drag n&#8217; drop for Flex (ala iGoogle)</title>
	<atom:link href="http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/feed/" rel="self" type="application/rss+xml" />
	<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/</link>
	<description>actionscript, flex, flash and other fun stuff</description>
	<lastBuildDate>Sat, 14 Nov 2009 16:04:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: vikrant</title>
		<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4745</link>
		<dc:creator>vikrant</dc:creator>
		<pubDate>Thu, 19 Mar 2009 03:25:32 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4745</guid>
		<description>Can we do something like adding new links to the widgets? In my case i have a customize widget where user can give his input as siteTitle &amp; sitePath &amp; left nap widget will take both and store it for future use.</description>
		<content:encoded><![CDATA[<p>Can we do something like adding new links to the widgets? In my case i have a customize widget where user can give his input as siteTitle &amp; sitePath &amp; left nap widget will take both and store it for future use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4520</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Sun, 05 Oct 2008 22:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4520</guid>
		<description>You could do this in a variety of ways.  But if you want to update positional information during the drag process I would probably use a timer mechanism that basically gets information off of the moving object and feeds it to the service that updates the other clients.</description>
		<content:encoded><![CDATA[<p>You could do this in a variety of ways.  But if you want to update positional information during the drag process I would probably use a timer mechanism that basically gets information off of the moving object and feeds it to the service that updates the other clients.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magnus</title>
		<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4519</link>
		<dc:creator>Magnus</dc:creator>
		<pubDate>Sun, 05 Oct 2008 22:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4519</guid>
		<description>Thanks for your quick response!

I have a follow up question if you don&#039;t mind ...

So, now I can do actual move of the object, but I&#039;m not sure how I can get the other apps to se the move in real time. The object has  move=&quot;someFunction()&quot; where the someFunction updates my sharedObject (myRemoteSharedObject.setProperty(&quot;x&quot;,object.x)).

This means updating the position after the move is done. Is there any way to update the sharedObject while I&#039;m moving?

If not, could I animate the move of the objects in the other apps when they get notification from the sharedObject?

Thanks again,

Magnus</description>
		<content:encoded><![CDATA[<p>Thanks for your quick response!</p>
<p>I have a follow up question if you don&#8217;t mind &#8230;</p>
<p>So, now I can do actual move of the object, but I&#8217;m not sure how I can get the other apps to se the move in real time. The object has  move=&#8221;someFunction()&#8221; where the someFunction updates my sharedObject (myRemoteSharedObject.setProperty(&#8220;x&#8221;,object.x)).</p>
<p>This means updating the position after the move is done. Is there any way to update the sharedObject while I&#8217;m moving?</p>
<p>If not, could I animate the move of the objects in the other apps when they get notification from the sharedObject?</p>
<p>Thanks again,</p>
<p>Magnus</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4518</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Sun, 05 Oct 2008 04:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4518</guid>
		<description>Hi Magnus.

Yeah you can do actual drag n&#039; drop in Flex.  You would need to have your draggable components inside a Canvas or like class.  Each Sprite subclass has the methods startDrag and stopDrag.  You would use that instead of something like the data-drag in dndLib or like libs.  Hope that helps.

I have an example of actual dragging here - http://jwopitz-lib.googlecode.com/svn/examples/examples/PodApplication.html

right click and view source to see the actual implementation.</description>
		<content:encoded><![CDATA[<p>Hi Magnus.</p>
<p>Yeah you can do actual drag n&#8217; drop in Flex.  You would need to have your draggable components inside a Canvas or like class.  Each Sprite subclass has the methods startDrag and stopDrag.  You would use that instead of something like the data-drag in dndLib or like libs.  Hope that helps.</p>
<p>I have an example of actual dragging here &#8211; <a href="http://jwopitz-lib.googlecode.com/svn/examples/examples/PodApplication.html" rel="nofollow">http://jwopitz-lib.googlecode.com/svn/examples/examples/PodApplication.html</a></p>
<p>right click and view source to see the actual implementation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magnus</title>
		<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4517</link>
		<dc:creator>Magnus</dc:creator>
		<pubDate>Sat, 04 Oct 2008 21:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-4517</guid>
		<description>Hi, 

I hope I can still comment on this one.
I need drag n drop in my application, but I really need the original object to move with the mouse, not a semi-transparent proxy object. Can this be done in Flex? 

I&#039;m trying to create a process modelling app communication with a media server (in my case Red5). The idea is to use the SharedObjects in rtmp so that several participants can model simultaneously, i.e everyone will se how the objects move across the modelling area. Right now I can &quot;move&quot; the objects when I drop them, but that means that for everyone but the person executing the drag, the dragged objects &quot;jumps&quot; to the new location. I have seen this behaviour in a fridge-magnet game on nonoba.com, but I think that that was coded in flash (with a Red5 media server) and not in Flex. 

Any hints/help would be appreciated. 

I&#039;m really a beginner when it comes to Flex (&lt; 10 hrs). I have developed a process modelling app (sort of) in OpenLaszlo, but there it seems that I can not use SharedObjects so I then turned to Flex to see if I could realize my ideas.

Thanks,

Magnus</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I hope I can still comment on this one.<br />
I need drag n drop in my application, but I really need the original object to move with the mouse, not a semi-transparent proxy object. Can this be done in Flex? </p>
<p>I&#8217;m trying to create a process modelling app communication with a media server (in my case Red5). The idea is to use the SharedObjects in rtmp so that several participants can model simultaneously, i.e everyone will se how the objects move across the modelling area. Right now I can &#8220;move&#8221; the objects when I drop them, but that means that for everyone but the person executing the drag, the dragged objects &#8220;jumps&#8221; to the new location. I have seen this behaviour in a fridge-magnet game on nonoba.com, but I think that that was coded in flash (with a Red5 media server) and not in Flex. </p>
<p>Any hints/help would be appreciated. </p>
<p>I&#8217;m really a beginner when it comes to Flex (&lt; 10 hrs). I have developed a process modelling app (sort of) in OpenLaszlo, but there it seems that I can not use SharedObjects so I then turned to Flex to see if I could realize my ideas.</p>
<p>Thanks,</p>
<p>Magnus</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-3947</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Thu, 31 Jan 2008 15:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-3947</guid>
		<description>This code would NOT be compatible with just Flash and AS3 as it has some dependencies on the MX framework.  

If you haven&#039;t checked out Flex, I highly suggest you download the trial version of Flex Builder 2 (or 3) and give it a go. 

I used to be big into Flash development and then Flex came and rocked my world.  I haven&#039;t looked back since.</description>
		<content:encoded><![CDATA[<p>This code would NOT be compatible with just Flash and AS3 as it has some dependencies on the MX framework.  </p>
<p>If you haven&#8217;t checked out Flex, I highly suggest you download the trial version of Flex Builder 2 (or 3) and give it a go. </p>
<p>I used to be big into Flash development and then Flex came and rocked my world.  I haven&#8217;t looked back since.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-3945</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 31 Jan 2008 11:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2008/01/24/simple-drag-n-drop-for-flex-ala-igoogle/#comment-3945</guid>
		<description>Hi,

I&#039;m trying to create a similar drag n drop sorting interface in Flash as I&#039;m not familiar with Flex. Could you tell me if the code you have created might be compatible with Flash?

Thanks,

Mark</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m trying to create a similar drag n drop sorting interface in Flash as I&#8217;m not familiar with Flex. Could you tell me if the code you have created might be compatible with Flash?</p>
<p>Thanks,</p>
<p>Mark</p>
]]></content:encoded>
	</item>
</channel>
</rss>
