[flexcoders] Drag-drop 'tear-off' for containers?

2009-12-07 Thread flexnewbie999
Hi, Excuse if this was previously posted. It seems the original post was not registered or something. I'm trying to use drag-drop to 'tear' a 'page' off of the screen with the mouse so a default 'page' is visible underneath. I'd also like the 'pages' visible via a link. The problem I'm having

[flexcoders] Drag Drop Panel placement

2009-06-22 Thread suba_be
Hi , We have the folowing requirement: There are two canvas containers within a HDividedBox and a drag drop panel in the application. On moving the divider of the Hdividedbox, the drag drop panel should align itself to the second canvas dynamically. We tried to get the container's x,y value

[flexcoders] Drag Drop - maually show red cross or green plus icon

2009-06-09 Thread bhaq1972
During a dragOver event I want to manually show the green plus or red cross icon on the dragProxy image. How do I do that? thanks

Re: [flexcoders] Drag Drop - maually show red cross or green plus icon

2009-06-09 Thread Adrian Williams
Hi there... You need to take a look at this: DragManager.showFeedback(DragManager.MOVE); hth adrian bhaq1972 wrote: During a dragOver event I want to manually show the green plus or red cross icon on the dragProxy image. How do I do that? thanks

[flexcoders] drag drop tree to tree onto node, not between nodes

2009-05-10 Thread Mic
Will Flex recognize a drop onto a node? The visual position bar when moving the drop up and down the destination tree displays between nodes. When we first add a mgr to the HR tree, that mgr is a leaf. Want to trap a drop directly onto the mgr so can turn him/her into a branch and add people

RE: [flexcoders] drag drop tree to tree onto node, not between nodes

2009-05-10 Thread Tracy Spratt
: [flexcoders] drag drop tree to tree onto node, not between nodes Will Flex recognize a drop onto a node? The visual position bar when moving the drop up and down the destination tree displays between nodes. When we first add a mgr to the HR tree, that mgr is a leaf. Want to trap a drop directly onto

[flexcoders] Drag Drop controls query

2009-02-10 Thread abhishekchess1
hello frnds, I'm going to create a mockup creater in air, in that i'm showing many controls(button,text,etc) to users and allow him to drag drop it in main canvas, and allow him to resize and edit title or text. same like this url http://balsamiq.com/products/mockups Could u guide me how can be

Re: [flexcoders] drag drop invokes click handler of dragged compoent

2008-10-22 Thread SAAGAR SHETTY
Thanks, Saagar Shetty. - Original Message From: jitendra jain [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008 2:15:02 PM Subject: Re: [flexcoders] drag drop invokes click handler of dragged compoent I don't understand your question. How can you start

Re: [flexcoders] drag drop invokes click handler of dragged compoent

2008-10-22 Thread Mark Carter
The DragManager has a useful method to save you the trouble: isDragging(), I think. I needed to do something like this just yesterday... I have a list or words in one list and then the synonyms for the selected word in another. I want to be able to drag a word from the first list to the second

[flexcoders] drag drop invokes click handler of dragged compoent

2008-10-21 Thread prashant194
Is there any way i can strop the click handler of the dragged component being fired when the component is dragged and dropped over other region? I want the click handler to work only on non drag operation i.e. when the component is clicked only and i want to stop click handler from fired when

Re: [flexcoders] drag drop invokes click handler of dragged compoent

2008-10-21 Thread jitendra jain
: Tuesday, 21 October, 2008 1:57:53 PM Subject: [flexcoders] drag drop invokes click handler of dragged compoent Is there any way i can strop the click handler of the dragged component being fired when the component is dragged and dropped over other region? I want the click handler to work only

[flexcoders] Drag Drop functionality in Flex/AS3

2007-06-01 Thread zzberthod
I would like to do drag and drop on panels. To do this, I'm using a Canvas containing 3 panels like this: -| || | PANEL 1 | || - - |

[flexcoders] Drag Drop functionality in Flex/AS3

2007-05-30 Thread zzberthod
Hello, I try to add Drag Drop functionality on my Flex application. But I don't know what to do? Do you know a core function that I can use in Flex/AS3? Thanks.

[flexcoders] Drag/Drop on PlotChart

2007-03-30 Thread carl_steinhilber
I'm revisiting this PlotChart project after a brief hiatus. Thanks to Igor's comments and his pointers to Ely's examples, I was able to get the chartitem selection working. Now I have a seemingly larger task and I'm not sure where to start. To recap, I have a PlotChart and a datagrid both bound

RE: [flexcoders] Drag Drop Question

2007-03-07 Thread Kumar
, 2007 2:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drag Drop Question I'm using a Canvas as a Drag/Drop target for multiple items. I drop the first item, from a List, between (0,0) and (50,100). My logic moves the item to (0,0) and sets width=100 and height=50. Now, I drop

RE: [flexcoders] Drag Drop Compiler Bug/Problem

2007-03-06 Thread Stephen Gilson
is on a possible drop target. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of richmcgillicuddy Sent: Saturday, March 03, 2007 11:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drag Drop Compiler Bug/Problem I have a very

[flexcoders] Drag Drop Question

2007-03-06 Thread jmfillman
I'm using a Canvas as a Drag/Drop target for multiple items. I drop the first item, from a List, between (0,0) and (50,100). My logic moves the item to (0,0) and sets width=100 and height=50. Now, I drop another item between (0,0) and (50,100), with the same width and a height=300. However,

[flexcoders] Drag Drop Compiler Bug/Problem

2007-03-03 Thread richmcgillicuddy
I have a very (very) simple demo program that is listed below. I was having trouble dropping a tilelist item onto a canvas. I was able to get the drop to work only if I set the toolTip of the canvas. This seems very odd, like the canvas was not initialized yet. The drag operation starts OK enough

Re: [flexcoders] Drag Drop Question

2007-02-23 Thread Jae Pak
) { event.target.stopDrag(); } } - Original Message From: jmfillman [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, February 22, 2007 11:57:04 PM Subject: [flexcoders] Drag Drop Question See code below. After you drag an item from

[flexcoders] Drag Drop Question

2007-02-22 Thread jmfillman
See code below. After you drag an item from the list and drop it into the Canvas, how you do then drag the item you just dropped, have it run the dragDropHandler function, and then move the original item? ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] Drag Drop outside of a target

2007-02-21 Thread Nate Pearson
What is the event that is triggered when I drop something outside of a drop target? I thought i could use dragExit() but that just shows when you leave the area. DragDrop() doesn't seem to get triggered when you actually do the drop outside of the droppable area. What i'm trying to do is let

Re: [flexcoders] Drag Drop outside of a target

2007-02-21 Thread Douglas Knudsen
DragEnter event perhaps? This fires when something is dragged over it. In your handler for this you can determine if its droppable or not among other things. DK On 2/21/07, Nate Pearson [EMAIL PROTECTED] wrote: What is the event that is triggered when I drop something outside of a drop

Re: [flexcoders] Drag Drop outside of a target

2007-02-21 Thread Paul J DeCoursey
I think what you need to look at is the dragComplete event. This will fire everytime a drag has completed. So you will have to do some checking to see if what the target is. Nate Pearson wrote: What is the event that is triggered when I drop something outside of a drop target? I thought i

Re: [flexcoders] drag/drop question

2007-02-18 Thread Andrey
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *darvon4u *Sent:* Monday, February 05, 2007 9:43 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] drag/drop question We're trying to re-rank the collection for datagrid after the user re-orders the items with drag/drop. here

[flexcoders] drag/drop question

2007-02-05 Thread darvon4u
We're trying to re-rank the collection for datagrid after the user re-orders the items with drag/drop. here is an example. before: 1 a 2 b 3 c now, supposedly we drag item 1 to the last place. we want to rerank it so the first column still shows the order (line #), while the collection has been

RE: [flexcoders] drag/drop question

2007-02-05 Thread James T. Riffe
Are you using a ArrayCollection as a dataprovider? James From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of darvon4u Sent: Monday, February 05, 2007 9:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] drag/drop question We're trying to re-rank

Re: [flexcoders] Drag/Drop - Datagrid. Target is off?

2006-12-01 Thread Igor Costa
Kenny in the target just enable the DropEnable=true On 11/30/06, lostinrecursion [EMAIL PROTECTED] wrote: Hi all, I have a little app I built with some drag/drop functionality that I coded in. I am not using the default and writing my own handlers. Everything is working, meaning all the

[flexcoders] Drag/Drop resets Grid ItemRenderer

2006-11-08 Thread John C. Bland II
Ok...here's the scenario. Grid 1 accepts drops from Grid 2. Grid1 has an inline item renderer which is a combo box. The combo is a custom component that filters an ArrayCollection based on an ID passed to it. So...this works great. I have the grid saving data on drop, updating level (from the

RE: [flexcoders] Drag/Drop within a viewstack goes a bit awry?

2006-10-19 Thread Matt Chotin
Subject: RE: [flexcoders] Drag/Drop within a viewstack goes a bit awry? I just had a look at the flexcoders archive and this issue has been mentioned before by Dima Ulich, http://tech.groups.yahoo.com/group/flexcoders/message/44032. Does anybody know if there is a workaround and whether

[flexcoders] Drag/Drop within a viewstack goes a bit awry?

2006-10-18 Thread Steve Cox
Bit of a confusing one this. I have 2 simple lists with the ability to drag/drop from one to the other. When these lists are in standard components all is fine. The dragEnter event is dispatched when you hover over any point of the other list. However when this is in a viewstack I cannot

Re: [flexcoders] Drag/Drop within a viewstack goes a bit awry?

2006-10-18 Thread Kornelius . Elstner
Yes, I've seen something very similar when having the lists under a docked application control bar as in: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=horizontal mx:ApplicationControlBar width=100% dock=true mx:Label text=Drag and

RE: [flexcoders] Drag/Drop within a viewstack goes a bit awry?

2006-10-18 Thread Kornelius . Elstner
I just had a look at the flexcoders archive and this issue has been mentioned before by Dima Ulich, http://tech.groups.yahoo.com/group/flexcoders/message/44032. Does anybody know if there is a workaround and whether it was raised as a bug? Kornelius Elstner flexcoders@yahoogroups.com wrote on

[flexcoders] [Drag Drop][Trees]

2006-10-03 Thread nikko_leborgne
Hello ! I have a problem with the drag and drop between two trees. Indeed, to drag drop in an only tree, there is no problem. Moreover, I know to drag drop between two trees, but I only know move files or folders. And, I would like COPY a file from a tree to another. What is the solution ?

[flexcoders] Drag Drop Outside App

2006-09-13 Thread esb260
I am wondering if there is a way for me to somehow catch when a user drags a Flex object outside the main app window so that I can take the object they have dragged out and place it in another app that is not Flex. Javascript prehaps? -- Flexcoders Mailing List FAQ:

[flexcoders] Drag Drop / addChild question on containers

2006-08-20 Thread jgraham_us
I have the following setup 2 VBox's inside a Application, I have Panels in vBox1, I want to drag n drop those panels to vBox2. The only way I can see to do this across containers is to destroy the object and recreate it in the other container. I really would like to be able to do just

[flexcoders] drag-drop behaviors in Flex Builder 2

2006-07-25 Thread zerlot_ma777
Hi, When I am using FB2, I think it will be better if I can do the following behaviors(especiallyina complex containers nested layout mxml page): 1. In outline window 2. click to select one container(or tag) name 3.drag and move it into another location in outline, then inthe source mode the

[flexcoders] Drag Drop problem with browser scrolling

2006-07-18 Thread mmmmbeeeeer
Here's an interesting problem which I hope someone can help me with.I've just started playing with Flex 2 - release version and have implemented the following:1. Composite component containing a label and DataGrid in a Vboxmx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:vz="*"

[flexcoders] Drag Drop conundrum...

2006-04-22 Thread flexabledev
I've started to experiment with Drag Drop and have run into a problem I can't figure out. I have successfully written code that allows me to Drag rows from a DataGrid (with a custom Drag Proxy) and Drop the value of one of the columns into a List. The only thing I don't understand is why when

RE: [flexcoders] Drag Drop conundrum...

2006-04-22 Thread Paul Williams
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexabledev Sent: Saturday, April 22, 2006 9:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drag Drop conundrum... I've started to experiment with Drag Drop and have run into a problem I can't figure out. I have successfully

RE: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread dos dedos
Of David Katz Sent: Monday, March 13, 2006 7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app I know the Flash player is limited in its ability interact with the user's file system. I'm wondering if a Flex 2.0 application

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread JesterXL
:20 AM Subject: RE: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app I've seen many AJAX examples of drag and drop. Is drag and drop planned for Flex in the future (beyond 8.5) or is their some kind of fundamental reason not to have it? I have a feeling it can be done

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread dos dedos
ou've seen with AJAX for drag and drop, you could probably do the same in Flex. - Original Message - From: dos dedos To: flexcoders@yahoogroups.com Sent: Wednesday, March 15, 2006 8:20 AM Subject: RE: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app I've seen

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread JesterXL
, 2006 9:10 AM Subject: Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app As far as I can tell there are two ways to do Flex/Browser-to-desktop interfacing:1. " You need to serve a crossdomain.xml file over HTTP from the local server. This will allow a web

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-15 Thread dos dedos
, and dragging over top of a Flex interface, dropping it there, and having Flex respond to it. - Original Message - From: dos dedos To: flexcoders@yahoogroups.com Sent: Wednesday, March 15, 2006 9:10 AM Subject: Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0

RE: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-14 Thread Matt Chotin
7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app I know the Flash player is limited in its ability interact with the user's file system. I'm wondering if a Flex 2.0 application (and the new Flash player) has the ability

[flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-13 Thread David Katz
I know the Flash player is limited in its ability interact with the user's file system. I'm wondering if a Flex 2.0 application (and the new Flash player) has the ability to enable a user to drag a file or folder *from the file system* onto a Flex app and have the app perform an action (such as

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-13 Thread Michael Schmalle
Hello, My insight is that would be a dream. I bet Adobe is thinking along the same lines though. Looking at Flash5 to Flex2, you can imagine anything for the future. ;-) Other than a no answer to your question, you could use a server side language locally to accomplish something close but,

[flexcoders] Drag drop within a tree control itself

2006-03-02 Thread Robs
Hi people, I've a tree control which is the drag source drop target itself to enable shuffling of nodes within the tree. As such, the normal drag drop codes work fine but there is 1 problem in the dragComplete event. I've used the following function within dragComplete event: function

[flexcoders] drag drop

2005-04-22 Thread Robert Brueckmann
Is there any way to get the id of the component which is the source from which youre dragging items from? Im trying to do 2 things on a page. I have a list of indices and a blank listthe user first can drag indices over to the blank list and then once theyve dragged them over, they can

RE: [flexcoders] drag drop

2005-04-22 Thread Ashish Goyal
You can get the dragging source byusing -event.dragSource.dataForFormat("source"). Thanks -Ashish From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Friday, April 22, 2005 9:03 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] drag drop

2005-04-22 Thread Robert Brueckmann
[mailto:flexcoders@yahoogroups.com] On Behalf Of Ashish Goyal Sent: Friday, April 22, 2005 12:36 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] drag drop You can get the dragging source byusing -event.dragSource.dataForFormat(source). Thanks -Ashish From: flexcoders

[flexcoders] drag-drop with two sources and two targets

2005-04-21 Thread Dzafer
Hi there, How can I use drag-drop features with 2 sources and 2 targets without allowing drag elements from source one to target two and vice-versa? Any help will be appreciated. Best regards Dzafer Yahoo! Groups Links To visit your group on the web, go