Re: [flexcoders] Data format for drag and drop

2008-05-14 Thread Josh Millstein
Ok, but in the dragsource addData call you have to specify the format of what you are dragging. Where is a list of formats? On 5/13/08 10:47 PM, Alex Harui [EMAIL PROTECTED] wrote: You can drag anything. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Data format for drag and drop

2008-05-14 Thread Douglas Knudsen
although there are a couple builtin formats for List based controls and the Tree, the full list is up to you to create. You can use what ever you want. eg var ds:DragSource = new DragSource(); ds.addData(dragInitiator, 'superFuzz'); or var ds:DragSource = new DragSource();

RE: [flexcoders] Data format for drag and drop

2008-05-13 Thread Alex Harui
You can drag anything. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Millstein Sent: Tuesday, May 13, 2008 6:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Data format for drag and drop Can anybody point me to a