:Drag Drop From Panel to Tree

I have two panels in a page.  I am creating a Tree control dynamically and adding to a Panel1.  I have to drag an image from panel2 to the Tree on Panel1.
I set the Tree property to accept the drop. When I drop the image on the Tree,  the DragDropComplete Event is not executing but the DragDropComplete Event of the Panel (Which is Tree parent container)  is executing. 
The DragEnter event on Tree is executing but the DragDropComplete not executing. 
How can I invoke the DragDropComplete event on Tree. Pl show some pointers. I appreciate your help.

instead of dragComplete
     use dragDrop event
and at the end wirte event.stopImmediatePropagation
<Tree dragEnter="treeDragEnter(event)"   dragDrop="treeDragdrop(event)" />
protected function treeDragEnter(event:DragEvent):void
     if(event.dragSource.hasFormat('items'))
          DragManager.acceptDragDrop(DataGrid(event.currentTarget));
protected function treeDragdrop(event:DragEvent):void
     var items:Array = event.dragSource.dataForFormat("items") as Array;
     var str:String = new String(items[0]);var cols:Array = DG.columns;
     if(cols.indexOf(str)<0) {
     event.stopImmediatePropagation();

Similar Messages

  • Unable to drag drop from grid to tree

    Hi,
    I am ablel to drag but unable to drop to a grid.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="initVars()">
    <!--STEP 2 WRITE ACTION SCRIPT to populate data and perform action-->
    <mx:Script>
    <![CDATA[
        import mx.events.DropdownEvent;
        import mx.events.DragEvent;
    import mx.collections.XMLListCollection;
    import mx.controls.List;
    import mx.events.DataGridEvent;
    import mx.controls.Alert;
    import mx.rpc.events.FaultEvent;
    import mx.rpc.events.ResultEvent;
    [Bindable]public var selectedcareplan: XMLList;
    [Bindable]public var selectedBCXML: XMLListCollection;
    [Bindable]public var businesscentertype: String;
    [Bindable]public var selectedBCPerformers: XMLList;
    [Bindable]public var selectedPerformerDetail: XMLList;                  
    [Bindable]public var originator: String;
    [Bindable]public var service: String;
    [Bindable]public var performer:String;
    [Bindable]public var dataFeedxml:XML;
    [Bindable]var careplans:XML ;
    [Bindable]var selectedplanproblem:String;
    [Bindable]var selectedplanname: String;
    [Bindable]var selectedplanid:String;
    [Bindable]var selectedplanresult: String;
    [Bindable]var selectedplansummary:String;
    [Bindable]var selectedplancomments:String;
              var xmltemplate: String = '';
    <!--STEP 3 write a function to populate data-->
    private function initVars():void
    careplans = <careplanlist>
    <careplan id = '1' name = 'plan name 1' result = 'Good Health' comments = 'Good' summary = 'Here isthe a summary'>
        <issue>
        this is a problem
        </issue>
            <steps>
            <step id ='11' action = 'action1' output = 'out' outcome = 'outcome1'/>
            <step id ='12' action = 'action2' output = 'out' outcome = 'outcome2'/>
            <step id ='13' action = 'action3' output = 'out' outcome = 'outcome3'/>
            <step id ='14' action = 'action4' output = 'out' outcome = 'outcome4'/>
            </steps>
    </careplan>
    <careplan id = '2' name = 'plan name 2' result = 'Good Health2' comments = 'Good' summary = 'Here isthe a summary'>
        <issue>
        this is a problem
        </issue>
            <steps>
            <step id ='21' action = 'action21' output = 'out21' outcome = 'outcome21'/>
            <step id ='22' action = 'action22' output = 'out22' outcome = 'outcome22'/>
            <step id ='23' action = 'action23' output = 'out23' outcome = 'outcome23'/>
            <step id ='24' action = 'action24' output = 'out24' outcome = 'outcome24'/>
            </steps>               
    </careplan>                       
    </careplanlist>;
    //selectedBCXML = new XMLListCollection(selectedcareplan);
    //tree1.dataProvider = selectedBCXML;
    //Alert.show("Init Variables: Care plans = " + careplans, "Alert Box", Alert.OK);
    private function ViewCarePlanDetail(event: Event):void
    var careplanid: String;
    careplanid =  XML(DataGrid(event.currentTarget).selectedItem).@id;
    //            Alert.show("ViewCarePlanDetail = " + careplans, "Selected Care Plan", Alert.OK);
    selectedcareplan= careplans.careplan.(@id ==careplanid);
    Alert.show("ViewCarePlanDetail = " + selectedcareplan, "Selected Care Plan", Alert.OK);           
    //selectedBCXML = new XMLListCollection(selectedcareplan);
    selectedplanname = selectedcareplan.@name;
    selectedplanproblem = selectedcareplan.issue;
    selectedplanid = selectedcareplan.@id
    selectedplanresult = selectedcareplan.@result
    selectedplansummary = selectedcareplan.@summary
    selectedplancomments = selectedcareplan.@comments
    Alert.show("ViewCarePlanDetail = " + selectedplanname, "Selected Plan name", Alert.OK);
    private function dragDropComplete(event: DragEvent):void
    selectedBCXML = new XMLListCollection(selectedcareplan);
    //tree1.dataProvider = selectedBCXML;
    private function treeLabel(item:Object):String
    var node:XML = XML(item);
    if( node.localName() == "issue" )
      {return "Medical Issue: "+node.toString();}
    if( node.localName() == "careplan" )
       return "careplan: " +node.@name;
    if( node.localName() == "steps") return "steps:";
    if (node.localName()=="step") return "[ step : " + node.@id +"    action:   " + node.@action + "    output:   " + node.@output +  "   outcome:   " + node.@outcome +" ]";
    return null;
    ]]>
    </mx:Script>
    <!-- STEP 1- Create data grid with columns and tree view-->
    <!-- to fill data grid columns with data, you need to bring in a DATA PROVIDER to provide data to columns-->
    <mx:VBox width="100%" height="100%" paddingTop="0">           
    <mx:Canvas width="100%" height="100%"   horizontalScrollPolicy="off"
        verticalScrollPolicy="off" cornerRadius="14" backgroundAlpha="0.28" backgroundColor="#C6ACAC" borderStyle="solid" borderColor="#EBF1F5" alpha="1.0">
    <!--<mx:TextInput x="11" y="22" width="252" editable="false" text="{selectedBC}" color="#800000" borderStyle="inset" cornerRadius="20" fontSize="11" fontFamily="Arial" fontWeight="bold"/> -->
    <!--dataProvider ="{careplans.careplan}"-->
    <mx:DataGrid id = "bcs" x="10" y="83" height="96" width="663" 
          fontFamily="Arial" fontSize="11" color="#352525" itemClick="ViewCarePlanDetail(event);"
          editable="false" enabled="true" fontWeight="bold"  cornerRadius="10" dragEnabled="true"
          dataProvider ="{careplans.careplan}" >
        <mx:columns>
        <mx:DataGridColumn headerText="Plan Name" dataField= "@id"/>   
        <mx:DataGridColumn headerText="Plan Id" dataField="@name"/>
        <mx:DataGridColumn headerText="Result" dataField="@result"/>
        <mx:DataGridColumn headerText="Comments" dataField="@comments"/>
        <mx:DataGridColumn headerText="Summary" dataField="@summary"/>
        </mx:columns>
    </mx:DataGrid>
    <mx:Label x="10" y="55" text="Available care plans" width="240" fontSize="11" fontFamily="Arial" fontWeight="bold" color="#7D4343"/>
    <!--dataProvider="{selectedBCXML}"-->
    <mx:Tree id="tree1"  labelFunction="treeLabel" showRoot="true"  width="761" height="132"  x="10" y="348"
           alpha="0.87" borderThickness="2"  fontFamily="Arial" fontSize="11" color="#121213"  cornerRadius="6"
           fontWeight="bold" enabled="true" dropEnabled="true"  dragDrop="dragDropComplete(event);"
           dataProvider="{selectedBCXML}"/>
    <mx:Label x="10" y="300" text="Selected Plan Details" width="192" fontSize="12" fontFamily="Arial" fontWeight="bold" color="#090808"/>
    <mx:Label x="10" y="196" text="Care plan name" width="95"/>
    <mx:Text x="115" y="196" width="135" text="{selectedplanname}" />
    <mx:Label x="283" y="196" text="Problem/Issue" width="77"/>
    <mx:Text x="400" y="196" width="140"  text="{selectedplanproblem}"/>
    <mx:Label x="10" y="222" text="Plan ID"/>
    <mx:Text x="115" y="222" width="135" text="{selectedplanid}" />
    <mx:Label x="283" y="235" text="Result"/>
    <mx:Text x="349" y="235" width="135" text="{selectedplanresult}" />
    <mx:Label x="10" y="258" text="Comments"/>
    <mx:Text x="100" y="258" width="150" text="{selectedplancomments}" />
    <mx:Label x="283" y="276" text="Summary"/>
    <mx:Text x="349" y="276" width="148" text="{selectedplansummary}" />
    </mx:Canvas>
    </mx:VBox>
    </mx:Canvas>
    <!-- end of STEP 1-->
    Help?

    Can anyone shed somelight into this problem please.

  • Drag & Drop from JTree (String) to JTextArea (Graphics2D)

    Hi everyone,
    I want to create a Drag & Drop from a JTree node to any location in a JTextArea. Upon dropping the node onto the JTextArea, I would want to draw a rectangle and the node name.
    I've created a custom transfer handler which allows the transferring of text from the tree node to the JTextArea.
    Any general ideas on how I can do that are wlecomed.

    I've managed to get hold of the JPanel via TransferHandler.TransferSupport.getComponent()
    the source seems a bit more tricky. I've tried this
    Transferable tr = support.getTransferable();
                   DataFlavor f = new DataFlavor();
                   f = new DataFlavor(MyTreeNode.class,"MyTreeNode");
                   try {
                        Object o = tr.getTransferData(f);...
    but the source does not provide a MyTreeNode instance, but something else (a String, I guess)
    how can I change this?

  • Drag & Drop from Outlook into SAP BDS (sales order, deliveries, etc.)

    Hello everyone,
    I have some problems with Email archiving between SAP ECC 6.0 and Outlook 2007. The overall scenario should look like:
    Outlook (drag&drop) --> SAP object like e. g. sales orders as Business Document --> third party archive.
    The problem we are facing starts with the false or maybe non existing drag & drop function for Outlook. The direct drag&drop from Outlook only creates a textline in SAPs Business Document. There ist no problem at all if we store the Email on the hard drive in .msg format and afterwards drag&drop it to the Business Document.
    Is there any way to skip the latching on the hard drive and communicate directly between  SAP and Outlook? Otherwise how do you handle this problem?
    Thank you.

    Is there no one else who got this problem?

  • Manual Drag&Drop on Panel components

    Ok people I have been following this example
    http://blogs.adobe.com/flexdoc/drag_and_drop/
    What the goal of my application will be to have a canvas on
    top of my application and one at the bottom. I will start off with
    a set of dynamically generated panels in the top or bottom canvas,
    doesn't really matter which. I want to be able to count how many
    panels are in each canvas and get the related id and name for each
    panel in each canvas.
    I have set up a canvas at the top where I pretty much just
    have the code from that example I linked to at the top except that
    my panels are generated on the fly and their count is variable. I
    am STRUGGLING to create a "two way drag and drop" between the two
    canvases (moving child panel from the top canvas to the bottom
    canvas and vice versa).
    I have found PLENTY of two way drop and drag examples but
    they all were about lists, datagrid, or tree components -
    components that already come built in with "drag and drop" and "two
    way drag and drop" but in my case the drag and drop is manually
    created.
    I am totally clueless as to the process. Can anyone point me
    in the right direction? I posted in the yahoo usergroups but so far
    my post has NOT been approved and it was posted like three hours
    ago.
    Any help is GREATLY appreciated.
    Here is part of my mxml:
    <mx:Canvas id="memberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#B6FABB"
    x="10" y="10"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop(event);">
    </mx:Canvas>
    <mx:Canvas id="nonMemberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#FBB7B7"
    x="10" y="325"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop(event);">
    </mx:Canvas>
    here is part of of my .as file:
    // Drag initiator event handler for
    // the title bar's mouseMove event.
    private function tbMouseMoveHandler(event:MouseEvent):void
    var dragInitiator:Panel=Panel(event.currentTarget);
    var ds:DragSource = new DragSource();
    ds.addData(event.currentTarget, 'panel');
    // Update the xOff and yOff variables to show the
    // current mouse location in the Panel.
    xOff = event.currentTarget.mouseX;
    yOff = event.currentTarget.mouseY;
    // Initiate d&d.
    DragManager.doDrag(dragInitiator, ds, event);
    // Function called by the canvas dragEnter event; enables
    dropping
    private function doDragEnter(event:DragEvent):void
    DragManager.acceptDragDrop(Canvas(event.target));
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    // Put the dragged panel on top of all other components.
    memberFilters.setChildIndex(Panel(event.dragInitiator),
    memberFilters.numChildren-1);
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    // Put the dragged panel on top of all other components.
    nonMemberFilters.setChildIndex(Panel(event.dragInitiator),
    nonMemberFilters.numChildren-1);
    public function onAvailableFiltersResult(result:Array):void
    phpData = new ArrayCollection(result);
    for(x=0; x<phpData.length; x++) {
    // create each new panel and add it to the parent canvas
    var filterData:Panel = new Panel();
    filterData.id = "id__" + phpData[x].data;
    filterData.title = phpData[x].label;
    filterData.addEventListener(MouseEvent.MOUSE_DOWN,
    tbMouseMoveHandler);
    memberFilters.addChild(filterData);
    the code in the .as is my code along with the code from the
    link above

    Here is the updated code ...
    I replaced the onAvailableFiltersResult with createPanels to
    create some 5 panels. You can replace it with
    onAvailableFiltersResult.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    creationComplete="createPanels()">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.managers.DragManager;
    import mx.containers.Panel;
    import mx.core.DragSource;
    import mx.events.DragEvent;
    // Variables used to hold the mouse pointer's location in
    the title bar.
    // Since the mouse pointer can be anywhere in the title bar,
    you have to
    // compensate for it when you drop the panel.
    public var xOff:Number;
    public var yOff:Number;
    // Drag initiator event handler for
    // the title bar's mouseMove event.
    private function tbMouseMoveHandler(event:MouseEvent):void
    var dragInitiator:Panel=Panel(event.currentTarget);
    var ds:DragSource = new DragSource();
    ds.addData(event.currentTarget, 'panel');
    // Update the xOff and yOff variables to show the
    // current mouse location in the Panel.
    xOff = event.currentTarget.mouseX;
    yOff = event.currentTarget.mouseY;
    // Initiate d&d.
    DragManager.doDrag(dragInitiator, ds, event);
    // Function called by the canvas dragEnter event; enables
    dropping
    private function doDragEnter(event:DragEvent):void
    DragManager.acceptDragDrop(Canvas(event.target));
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop1(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    memberFilters.addChild(Panel(event.dragInitiator));
    // Put the dragged panel on top of all other components.
    memberFilters.setChildIndex(Panel(event.dragInitiator),
    memberFilters.numChildren-1);
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop2(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    nonMemberFilters.addChild(Panel(event.dragInitiator));
    // Put the dragged panel on top of all other components.
    nonMemberFilters.setChildIndex(Panel(event.dragInitiator),
    nonMemberFilters.numChildren-1);
    public function createPanels():void
    for(x=0; x<5; x++) {
    // create each new panel and add it to the parent canvas
    var filterData:Panel = new Panel();
    filterData.id = "id__" + x;
    filterData.title = "Panel-" + x;
    filterData.addEventListener(MouseEvent.MOUSE_DOWN,
    tbMouseMoveHandler);
    memberFilters.addChild(filterData);
    ]]>
    </mx:Script>
    <mx:Canvas id="memberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#B6FABB"
    x="10" y="10"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop1(event);">
    </mx:Canvas>
    <mx:Canvas id="nonMemberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#FBB7B7"
    x="10" y="325"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop2(event);">
    </mx:Canvas>
    </mx:Application>

  • Drag drop from bridge to InDesign.

    I am having problems with getting drag drop to work from bridge to InDesign. I have made an extension that reads information from ouer dam and shows it in bridge. I wont to bee able to drag a node from that data from bridge(It shows fine in bridge with thumbs) to InDesign. I have enabled:
                   if(infosetName == "item" || infosetName == "all")
                        infoset.cacheData.status = "good";
                            if(!currentNode.isContainer())
                                infoset.canBeDragSource  = true;
                                infoset.canBeDropTarget  = true;
    in
            dbiModel.refreshInfoset = function(infosetName)
    And made
            dbiModel.addToDrag = function(pointerToOsDragObject)
                return true;
            dbiModel.wouldAcceptDrop = function(type, sources, osDragRef)
                return false;
    And are able to drag the node but other applications dosent accept it as valid.
    Whot am i missing?

    cynglas wrote:
    ... so I don't see why it couldn't do it directly from within ID through CTRL+D. The fact that it has never done it before is no reason why it couldn't or shouldn't be able to do it...
    ...... It would just mean that I wanted faster as well as  etter intergrated software.
    It has just never worked that way and I've never seen a request for it either.
    In the Control Panel you have got a Bridge Icon
    At the bottom of the document window you have the Browse in Bridge
    The Default Shortcut for Bridge is CTRL+ALT+o (CMD+OPT+o)
    In Edit>Keyboard Shortcuts under
    Product area : Panel Menus
    Layout Window Status: Reveal in Bridge --- [none defined]
    or
    Layout Window Status: Reveal in Mini Bridge --- [none defined]
    to add your own shortcut to Reveal in Bridge command
    But I just don't see a way to go "Place from Bridge"
    In fact - in all the years I've been on the forums I have never seen the request.
    However you can make feature requests here
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    And there's a feature request forum
    http://forums.adobe.com/community/indesign/indesign_feature_requests
    And in the end - someone might be able to script an option to go to Bridge for File>Place
    http://forums.adobe.com/community/indesign/indesign_scripting

  • Drag&Drop from Lightroom to Premiere doesn't work! Programming an alternative?

    Unfortunally the is no working Drag&Drop ability to drag a videofile from the Lightroom Library into the Premiere Project View.
    (This Problem appears only on a Windows machine not on Mac)
    This is becaus if you send a (valid) filepath to "Adobe Premiere Pro.exe" as a parameter it doesn't do anything! Why that?!?!?
    It makes no difference if you drop a file on "Adobe Premiere Pro.exe" or if you use the windows command shell like "C:/...<path to premiere>.../Adobe Premiere Pro.exe" "myfile.avi"  , simply nothing happens - at least with Premiere Pro CS5...
    So the Idea is to build an Lightroom Plug-In, that opens an exe-file with the filepaths of the currently selected Viedeos from the Lightroom Library as parameter.
    The exe-file should pass the information to an opened Project in Premiere an load the Videos into the Project.
    With ExtendScript Tool i can get this behaviour with this code:
    var myFiles = ["C:\\01.avi, ..."];
    app.project.importFiles(myFiles);
    I don't think that the Premiere SDK will help me out, because with that I can only build Plug-Ins that work INSIDE Premiere. I need a Executable that can send information/files to Premiere from Outside. The only thing I can think of is to load the right dll-file and call the function() for importing files to Premiere (I think this is what ExtendScript Tool does ), but I don't know how to start, because nothing is documented about the dlls...
    Any Ideas

    EDIT:
    Ok, I identified the dll which is importing Video-Files to Premiere:  HSL.dll
    At my pc it is located in:
    "C:\Program Files\Adobe\Adobe Premiere Pro CS5\"
    The function that is called is named ImportFiles(...)
    That's the whole code, reverse engineered:
    HSL::ImportFiles
        std::vector <
                    std::basic_string <unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >,
                    std::allocator <std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > >
                    >
        const&,
        bool,
        bool,
        std::vector <
                    ASL::InterfaceRef<BE::IProjectItem, BE::IProjectItem>,
                    std::allocator<ASL::InterfaceRef<BE::IProjectItem, BE::IProjectItem> >
                    >&,
        std::vector <
                    std::pair<int, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > >,
                    std::allocator<std::pair<int, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > >
                    >&,
        ASL::InterfaceRef<BE::IProjectLoadStatus, BE::IProjectLoadStatus>&,
        DLG::ImportFromEDL::ImportFromEDLDialog*,
        std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const*,
        DLG::ImportFromEDL::ImportNewSequenceMediaParamsDialog*
    Can anybody "read" that , or anybody know how to get this working with c++?

  • Windows Storage Server 2008 - unzip with drag & drop from Windows 7 client fails

    Hello.
    As i asked this question in German and got no answer so i try it in English now.
    I have the following problem:
    We have a Windows SBS 2008, where we store our files. If somebody opens a ZIP-file on a network share from a Windows 7 Client (64 Bit) it is possible to drag & drop the content (multiple files) to a directory. So far everything works as expected.
    We now have an additional Windows Storage Server 2008 integrated in our domain (Buffalo Tera Station WS-QV8/R5), where we also store files. If somebody opens the same ZIP-file on a network share of this server from a Windows 7 Client and tries to drag &
    drop the content the following happens:
    1. only one file is extracted and to display the file a refresh of the explorer view is needed.
    2. when the drag & drop action is repeated a second file is extracted
    Not alle files are extracted and there is no error message or indication why this happens.
    The behaviour is reproducible from another Windows 7 Client (32 Bit).
    If we try to drag & drop the files from the ZIP-file on the Windows Storage Server network sahre to a directory on the SBS network share all files are extracted correctly.
    On the Windows Storage Server itself all files are extracted without problmems. Therefore it must be a problem with the combination of Windows Storage Server und Windows 7 Client accessing the files via network shares.
    Are there any ideas where this problem could be located? Has anybody the same phenomenon and maybe a solution for it?
    Thanks in advance
    Michael Pruss

    Hi Michael,
    Thank you for clarifying the issue for us.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Regards
    Kevin
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback
    on our support quality, please send your feedback here.
     

  • Drag&Drop from Browser to AIR App

    Hi there,
    i wonder how it is possible to drag an element from a flash
    page in my browser to an air app on my desktop. i've seen the
    showcase
    of the nickelodeon jigsaw game on adobe.com, but the videos
    looks kind of post-processed.
    do you have any tipps on how to enable flash/AIR
    drag&drop trespassing the browser borders?

    Thanks for your answer.
    i already tried something like this, but i still have
    problems with getting the newly created entity dragged. how can I
    position the new entity from my air app directly under the mouse
    cursor? so far i didn't find any screen mouse position functions or
    properties. If I use a fullscreen, always on top window with mostly
    transparent parts, I can't capture the mouse position using
    MOUSE_MOVE all the time. Besides, how can I change the focus from
    my browser to my air app? I already tried calling
    nativeWindow.orderToFront() and nativeWindow.activate(), but the
    focus doesn't change when I click the entity in my flash page.
    Maybe somebody knows an answer to this ...

  • Home Sharing between Mac & PC - Can't drag & drop from one to the other.

    I have a Mac & a PC. I turned on home sharing and it works well, except that I want to copy all of the music on the Mac over to the PC. With Home Sharing active, you should be able to drag & Drop, but I can't. I read the help article and it says that the computer icon of the remote computer that you are sharing from should be in the left pane under Shared in iTunes. I don't see this. I only see my library.
    Any suggestions?

    these reads may be helpful:one and two.
    JGG

  • Drag Drop Dockable Panels

    Hi there all,
    Does anybody know if there is source code/widgets/extensions
    out there to
    achieve the same effect as the BBC home page.
    http://www.bbc.co.uk/
    It's really the ability to drag/drop/dock the panels and the
    fact the panel
    positions are stored (I'm presuming via a cookie).
    Would really appreciate any help at all.
    Cheers,
    @ndyB

    @ndyB wrote:
    > Hi there all,
    >
    > Does anybody know if there is source
    code/widgets/extensions out there
    > to achieve the same effect as the BBC home page.
    >
    http://www.bbc.co.uk/
    >
    > It's really the ability to drag/drop/dock the panels and
    the fact the
    > panel positions are stored (I'm presuming via a cookie).
    > Would really appreciate any help at all.
    Try this:
    http://www.webdesignermag.co.uk/tutorial_files.php?tutorial=19
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Issue with Drag&Drop between table and tree component

    I want to drag table rows and drop it on the tree node. I use following code to achieve this:
    <af:table value="#{bindings.pricingObjects.collectionModel}"
    var="row"
    rows="#{bindings.pricingObjects.rangeSize}"
    emptyText="#{bindings.pricingObjects.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.pricingObjects.rangeSize}"
    selectionListener="#{workspaceBean.onTableSelect}"
    rowBandingInterval="0" id="poTable"
    partialTriggers=":::csTree :::cbRefresh"
    columnStretching="column:c4"
    displayRow="selected"
    contentDelivery="immediate"
    clientComponent="true"
    binding="#{workspaceBean.table}"
    rowSelection="multiple">
    <af:dragSource actions="MOVE" defaultAction="MOVE" discriminant="rowmove"/>
    </af:table>
    <af:tree value="#{bindings.privateChangeSets.treeModel}"
    var="node" displayRow="selected"
    selectionListener="#{workspaceBean.onTreeSelect}"
    rowSelection="single" id="csTree"
    expandAllEnabled="false"
    binding="#{workspaceBean.tree}">
    <af:dropTarget dropListener="#{workspaceBean.dropListener}" actions="MOVE">
    <af:dataFlavor flavorClass="org.apache.myfaces.trinidad.model.RowKeySet"
    discriminant="rowmove"/>
    </af:dropTarget>
    </af:tree>
    With this code I am getting the data of dragged rows but I am not able to get the tree node where rows are dropped. Dropevent.getDropSite() always returns NULL.
    Strangely, I tried to use deprecated tags <af:collectionDragSource> and <af:collectionDropTarget> and everything works fine. Dropevent.getDropSite() returns me the correct rowkey of tree node.
    Any idea why am I not getting desired result with <af:dropTarget>?

    Hi,
    +" Please note that dropSite==null is a legal value for collection components. dropSite=null and DropOrientation==ON indicates that the drop has happened outside the data portion of the collection component and should be treated as a drop on the entire component Also note that dropSite==null and DropOrientation==AFTER indicates that the drop has happened on an empty collection component and the user intends to append the data."+
    http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e10684/oracle/adf/view/rich/event/DropEvent.html#getDropSite__
    List dropRowKey = (List) dropEvent.getDropSite();
            //if no dropsite then drop area was not a data area
            if(dropRowKey == null){
                return DnDAction.NONE;
            }Frank
    Edited by: Frank Nimphius on Feb 18, 2011 11:18 PM

  • Can't drag & drop from iPhoto into iMovie 10

    Am trying to add some photos from my iPhoto library into an iMovie 10 project.  I access the iPhoto library and the pictures show up, but when I try to drag/drop or add to the timeline, nothing happens.  The little hand shows up over the photo, and even the + sign, but when I try to move or add it, nothing happens.
    And, once I select one photo, it seems stuck until I deselect all. 
    Dragging of clips from the event library doesn't seem to be a problem.
    Any advice or help is appreciated.

    With a picture selected from the iPhot Library as it shows up in iMovie, if you select a photo by clicking on it once, then click the plus sign, what happens?

  • Drag & Drop from the Bridge to CS2 apps

    A great feature for the Bridge would be having the ability to Drag & Drop directly from the Bridge WITHOUT opening the files to other CS apps. This could work much like InDesign "Book Items" buy would be for entire suite.

    But you have to have the files open. I would like to be able to Drag & Drop, directly from the Bridge. IE not having the file open. The same way Book Items work in InDesign. If you have an EPS file, saved in the Book Items, all you have to do is Drag it into your indd file.

  • AICS4 drag/drop from finder not working

    so I'm a huge fan of dragging and dropping my images from the finder into an AI doc, but suddenly i can no longer do this. yes, all the layers are unlocked and visible, so it's not that. they're RGB images (jpgs, psds, mostly) and the document is RGB, so it's not that.
    did i accidentally hit a keystroke that would prevent this from happening properly? the ai doc window highlights when i drag over it, but then it just sort of twinkles and does nothing.
    i've restarted illustrator, still no go.
    any ideas?
    thank you,
    erika

    I can place the image the slow and boring way, one at a time. however, i cannot drag and drop from Bridge either.
    There's something up with the file. it works fine in a new file. what did I do?

Maybe you are looking for