0
votes
1answer
33 views

How to get only the parent of the parent of the component

I am trying to apply the glow filter to the parent container of the parent container of the child, the event comes from the child. so: [parent] has [another parent] which has [child] Event is ...
0
votes
1answer
39 views

Flex titledborderbox drag and drop disable dragging children of titledborderbox

So I have this titledborderbox in flex 4 with custom skin, I am working on drag and drop application and I have run into some problems. When I initiate drag and drop on that component I am able to ...
0
votes
2answers
40 views

Changing the alpha of the dragImage onDragEnter

I have a custom dragImage (a simple container with border and a label) with the default alpha value 0.5 drag source is a spark DataGrid dropTarget is a BorderContainer with a Form in the onDragEnter ...
6
votes
1answer
134 views

Preventing Flex tree drop feedback

I'd like to allow a user to reorder items within a Flex tree folder, but not move those items outside of the folder. I can prevent the outside drop from succeeding, but I'd like to give the user ...
0
votes
1answer
52 views

How to render a collection of DisplayObject instances in a spark List?

Is it possible to have a Spark List display items from an ArrayCollection of DisplayObjects (i.e.: Canvas)? Something like the code below does not render anything unless I specify an itemRenderer. ...
0
votes
1answer
15 views

Possible to set mouse cursor during NativeDragDrop operation?

In an AIR app, I am trying to implement a tab interface like the one in Firefox or Chrome where you can drag a tab and create a new window from it. All goes well except when I drag the mouse out of my ...
0
votes
1answer
50 views

Flex : What the use of Drag Source for drag and drop?

I have already read about what is Drag Source in http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7cfe.html However I still don't understand why u need this. Most of the ...
0
votes
0answers
138 views

Flex: How to drag and drop within the Border Container?

What my program can do. I can add an image object and able to rotate it by double clicking.I can also drag and drop anywhere in the border container. What I want to achieve : 1.When I drag and ...
0
votes
0answers
214 views

Flex : How to drag and drop Image object within the boundary of the border container?

How my program works: When I click one of the cell in the data grid, I create an Image object according to the ShapeName And able to drag and drop the object any where in the border container. You ...
1
vote
1answer
136 views

Drag & Drop data from one Flex application to another. Possible?

I googled for quite some time now, but was not able to obtain a definite answer. what we want to do in a Flex Web application is, for example, drag items from one DataGrid to a Flex app in a second ...
0
votes
2answers
103 views

Enable drag and drop between itemrenderers

I have two tilelists in my mxml application. The items (image and a label) get rendered by an itemrenderer. The functionality I want to achieve: drag image from tilelist #1 and drop it on tilelist #2 ...
2
votes
1answer
283 views

flex spark list Drag and drop an item on a spark canvas component

i have a spark list that displays a list of images that represent products. i am trying to implement a drag and drop functionality that allows the user to drag the products he wants to buy from the ...
0
votes
1answer
59 views

Flex event when drag is dropped outside a component

One of my components is handling drag and drop <s:HGroup id="hgModules" gap="0" width="100%" height="100%" horizontalAlign="center" verticalAlign="middle" dragOver="dragOver(event)" ...
1
vote
1answer
112 views

Drag drop data between 2 advancedDataGrid and clone instance

I have 2 advanceddatagrid with dataprovider based on an arraycollection of an instanciated actionscript class. I want to copy and duplicate data from the datagrid1 to the datagrid2... For duplicate ...
0
votes
1answer
99 views

HTML5 file api - can't drag/drop over flex app in Firefox on Windows

So here's the setup. I have a flex application which fills the entire browser window and I'd like to give users the option to drop files anywhere on the app to upload the file to my server. Or just as ...
3
votes
1answer
148 views

HTML5 Drag andDrop to ActionScript FileReference

Is it possible to let HTML5 FileAPI Drag and Drop file into an ActionScript FileReference object? I think GMail does it: It allows Drag and Drop in Google Chrome. But then ActionScript object is ...
0
votes
1answer
92 views

AIR - Add Images From Drag&Drop To Stage

I'm building a Tile Viewer in Adobe AIR and so far I have implemented the Drag and Drop function that allows the user to load PNG and JPG files. The function returns a ':File' format, but how can i ...
0
votes
0answers
96 views

Flex Project, drag & drop image animation

I'm developing a Flex Project and I need to move my images in different containers. I worked in this way: [Embed("assets/macchina.png")] [Bindable] public var Macchina:Class; ...
0
votes
1answer
273 views

Line Separator of Flex Tile List

I am creating one application in Adobe AIR with Flex 4.6. In that, I had created one List with TileLayout. And also I want to do drag & drop in that list only. So I had enabled drag & drop ...
0
votes
0answers
97 views

Retrieving dragged item with multi select drag in Flex Datagrid

When I do a multi row drag and drop I want to know which item in the dragged items started the drag. Let's say I dragged 10 items, and started the drag by dragging item 2, Is there a way to find that ...
0
votes
0answers
170 views

Dragging rows in ordered Flex DataGridColumn

I'am having following issue that I don't know a good approach to ... Problem: I have a AdvancedDataGrid with a column with dataField 'Follow number', this column can be ordered. But in this datagrid ...
0
votes
1answer
209 views

Dragging a DataGrid row INTO other DataGrid row

I have 2 datagrids, and the way the standard dragging is implemented I don't know if it is easy to provide underneath feature: I want to drag 1 datagrid row from the second DataGrid INTO a row from ...
0
votes
1answer
291 views

List ItemRenderer as Draginitiator in manual Drag & Drop

I'm trying to add spark list ItemRenderer as DragInitiator when implementing manual drag & drop functionality. Example below puts whole list as a dragInitiator. Question is how to use Itemrenderer ...
0
votes
0answers
162 views

Flex- Drag and Drop in a Text Area

i have developed a code for drag and drop multiple images in a text area to create their pdf's. but when a drag an image it drag enter is working properly but drag drop is not working.. protected ...
1
vote
1answer
275 views

Manual drag and drop in Flex 4 while avoiding collision with other draggables

I have a generated application where one part is an exercise where the user has to drag one or more items (text mainly, but images might be possible as well) and drop it into a box as seen below. ...
0
votes
2answers
420 views

Flex: Why are TileList images disappearing on drag?

I'm developing a Flex Air (desktop) application that loads images from the local filesystem into a TileList. The user will then be able to drag (copy) these images out of the list onto another ...
1
vote
1answer
290 views

Adobe Air: drag & drop grouped components

I am trying to create Adobe Air application in which I require the components below: Allow me to elaborate this mockup: There are 2 panels on each side, and the items inside these panels can be ...
0
votes
1answer
129 views

Flex Tree persist sorting and handle drag and drop

I would like to persist the sort state of a flex tree to my database. I sort the tree items recursively using a sort object on the children list of each item in the tree. Thus the sorting works fine. ...
1
vote
1answer
171 views

Flex prevent datagrid from editing after a drag & drop

I have an AdvancedDataGrid with editable parameter to "true". My problem is that after a successfull drag & drop, the item is being edited and I don't want this to happen. I tried to create a ...
0
votes
1answer
288 views

InDesign SDK : Drag'n'Drop from a Flex Panel

I have a Flex panel, in InDesign, from which I drag an URL. If I drop this URL on a text editor or a web browser, it works. But when I try to drop it on my InDesign document, it's a little bit harder. ...
1
vote
1answer
158 views

Drag and Drop in a POPUP in Flex 4

I wanto do a simple dragdrop in an advancedDataGrid which is in a popup window. The popup window is inside a Vbox and the Vbox is inside a canvas. The item which will be dragged is inside a Group and ...
1
vote
1answer
173 views

suggestions on technology choice for a specific rich/thick client app

I have a django site where I'm thinking about making a rich/thick client app to allow the user to do operations that would otherwise be really difficult to otherwise. some of the requirements would ...
0
votes
0answers
84 views

How to remove drag and drop handler from a flex component?

I am trying to remove drag and drop event handlers from a canvas but it doesnt seem to accept this. I am using creationComplete event to remove event handlers, but it stills accept drag items. Does ...
0
votes
1answer
90 views

Flex 4 layout similar to match the following layout( wired connection like layout)

I need to develop a flex application which is similar to match the following layout. From the list I need to drag and drop items into a panel. I need to visualize wired connections between the items ...
0
votes
2answers
546 views

How do i change the DragManager reject-symbol in AS3?

I'm working on a drag-n-drop functionality in flex4/as3, for the first time. I use the DragManager-class, and the basic drag-and-drop stuff works now. But, how do i change the little red "reject ...
0
votes
4answers
226 views

Flex 3: way to measure how far the mouse has moved since click/hold has started?

I have a canvas with an icon in the upper right hand corner. What I would like is this: the user clicks the icon user holds down their mouse button user slides the mouse left/right in order to move ...
0
votes
1answer
105 views

Flex Detecting Dragged Data

I have a list that accepts drops. When an item is dropped (DragEvent.DRAG_DROP) I need to collect the data that is dropped, however I have found nothing in the event that helps me do so, ...
0
votes
0answers
326 views

Flex - Drag and drop SVG image

I am trying to drag and drop images into a larger image. I am using the following code. public function beginDrag( mouseEvent:MouseEvent ):void { var dragInitiator:IUIComponent = ...
0
votes
2answers
744 views

flex: Drag and drop- object centering

In a drag+drop situation using Flex, I am trying to get the object center aligned to the point of drop- somehow, irrespective of the adjustments to height and width, it is always positioning drop ...
0
votes
2answers
751 views

Drag and drop an image from a container to another - Flex

I need a way to drag and drop an image from a container to another. I have tried a few different ways but I guess the drag & drop thing is still eluding me. Anyway, here's what I am trying to do, ...
1
vote
1answer
522 views

flex: Drag and drop of copy- image instantiation in AS

I am working on a flex project I am building drag-and-drop functionality in AS. I have a situation where I need to pick image items from the left and drop it onto a grid. Three specific requirements ...
0
votes
2answers
170 views

flex: Ability to drag+drop a movieclip

In order to improve user experience we want the ability to have an animated movieclip of a turning wheel- and have the ability to drag and drop it anywhere on a defined area We have built the ...
0
votes
1answer
1k views

Find out which tree item has been dropped on to in Flex

I have a mx.List and a mx.Tree. I'm trying to drag items from the list to the tree but instead of have them add to the actually tree itself I just want to find out what the dropTarget on the tree is. ...
2
votes
2answers
1k views

How to restrict the drag and drop area in a canvas

I have a canvas,lets say of dimensions 500x600.I have some controls inside that canvas.User can rearrange the controls by drag and drop.But I want to restrict the drag and drop within that canvas. ...
2
votes
1answer
1k views

flex- Drag and drop

I am trying to drag and drop an object across the SkinnableContainer- am coming across a very strange issue The drop occurs only at a few places- elsewhere it just shows the "X" sign and on dropping ...
0
votes
1answer
716 views

Can't get the bitmapdata from dropped image in Flex Air AS3

When I drop an image onto my canvas I can get the nativePath to the image but not the bitmapdata wich is the one I need. In debug mode when I look into the file properties the data is set to NULL. ...
1
vote
1answer
339 views

Drag Manager - how to access the target of dragging event in my dragDropHandler?

I'm making a Matching Game where I have some images on my left and I can drag them onto images on my right and if they are matching, they should both disappear from the stage. MXML code: ...
1
vote
1answer
685 views

How can I drag a copied object around a canvas?

I am able to drag a copy of an object and drop it on the canvas, using drag-drop manager functionality in Flex. The original object remains unchanged and a new copy of the object is created. ...
2
votes
2answers
853 views

drag and drop- only COPY vs move

I am looking to implement the drag and drop functionality in flex. I have been able to do that using the drag manager Drag and drop examples Only my need is slightly different- I want a copy of the ...
2
votes
1answer
213 views

Drag and drop on lattice grid- flex

I am trying to build a visual simple electric circuitry model. Towards that a) I am looking to build a drag & drop functionality, whereby I have items (wires, resistors, battery) that can be ...

1 2 3