Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-10 Thread Paolo Bernardini
are you using flex 2.0 or 2.0.1? I have an application using drag and drop and need to move the items within the TileList, it was working just fine in version 2.0, now since I updated to 2.0.1 it doesn't move the items anymore but instead makes a copy. Basically I want to order the Items of the

Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-10 Thread Rachel Maxim
I'm using 2.0, I'm not in a huge hurry to upgrade right before I finish this project :) Thank you for offering help, I got it working by changing the TileList attribute dragMoveEnabled=true (I didn't realize this could be turned on when using custom drag and drop handling). On 1/10/07, Paolo

RE: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Tracy Spratt
Have you found the line of code that changes the functionality? If not, do that. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rachel Maxim Sent: Tuesday, January 09, 2007 12:49 PM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Rachel Maxim
I'm gonna keep working on it, but that is exactly what I am trying to find! Unfortunately this is pretty bare-bones as far as functionality goes, so if I remove just a couple lines then the entire drag and drop won't work :) I'll definitely post when I find the solution though! R On 1/9/07,

RE: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Tracy Spratt
: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move? I'm gonna keep working on it, but that is exactly what I am trying to find! Unfortunately this is pretty bare-bones as far as functionality goes, so if I remove just a couple lines then the entire drag and drop

RE: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Stephen Gilson
I did not run the code, but two things jump out at me. In your doDragEnter event, you have this: else { DragManager.NONE; } DragManager.NONE is a constant, and I'm not sure what you are trying to do. In

Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Rachel Maxim
. Tracy -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Rachel Maxim *Sent:* Tuesday, January 09, 2007 1:23 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead

Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Rachel Maxim
Hi Stephen I'm not gonna argue with you since you work for Adobe :) I did figure out shortly after posting that the DragManager.NONE line wasn't doing anything (I just didn't want to allow drag and drop in that case). As far as calling ShowFeedback for every item dragged, I don't see another

RE: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Peter Watson
TileList - why does my code copy instead of move? Hi Stephen I'm not gonna argue with you since you work for Adobe :) I did figure out shortly after posting that the DragManager.NONE line wasn't doing anything (I just didn't want to allow drag and drop in that case). As far as calling

Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Rachel Maxim
@yahoogroups.com *Subject:* Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move? Hi Stephen I'm not gonna argue with you since you work for Adobe :) I did figure out shortly after posting that the DragManager.NONE line wasn't doing anything (I just didn't want

Re: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Rachel Maxim
Hard to imagine but I had not actually tried running the sample code I was working from, assuming it worked how I wanted it to...anyway as it turns out the sample also COPIES and doesn't move, so whatever I am doing is working how it's supposed to, it's just not how I want. Let me approach this