No Drag-n-Drop feature for my mounted Adobe Drive in my Adobe Bridge CC

I've developed a custom Drive Connector for our storage server. In Adobe Bridge CC, after connecting and auto-mounting to our server through Adobe Drive 5, there is no Drag-n-Drop feature for my data inside the mounted drive. But, if I browse other directories of my Mac with Bridge, all files are draggable. What could be the problem?
It's quite strange! Because, files within my mounted drive are draggable through Adobe Bridge CS6, but not in Adobe Bridge CC !!!
My configuration:
Mac OSX 10.9.2
Adobe Bridge CC 6.0.1.6
Adobe Drive 5.0.2.16
Our own custom Drive connector

I too have discovered the lack of Drag-n-Drop support in Bridge when browsing assets provided by my Adobe Drive connector.  I have tried telling Drive that I support nearly all of the Drive features by adding  "Capability"  objects to the ConnectHandler's response object (including Capability.COPY and Capability.MOVE), but that had no effect; Bridge still refuses to let me drag an asset provided by the connector.
I would very much like to know what I have to do in order to provided Drag-n-Drop functionality.

Similar Messages

  • How to disable drag and drop feature for a document library?

    Hi
    How can I disable drag and drop feature for a document library? Do I have an option to disable it from the SharePoint's feature set?
    Or can I disable it using a script? If so, how?
    Regards
    Paru

    Hi,
    According to your post, my understanding is that you want to disable drag and drop feature for a document library.
    Drag and drop in SharePoint 2013 is a feature that depends on HTML5, which requires version of browser, SharePoint by default doesn’t has feature to disable or enable this.
    You can try disabling the drag and drop feature by disabling an add-on in Internet Explorer, or
    using Internet Explorer 9 or lower.
    Here is a similar thread for your reference:
    https://social.msdn.microsoft.com/Forums/office/en-US/8961ff07-039d-47b0-ae7d-8e24af96234a/2013-doc-library-settings-turn-off-drag-and-drop-and-findsearchfilter-on-metadata-columns?forum=sharepointcustomization
    http://community.office365.com/en-us/f/154/t/228079.aspx
    More information:
    The Solution to SharePoint 2013 Drop and Drag Not Working
    SharePoint 2013 Drag and Drop Upload Not Working
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Drag and Drop feature not working

    I'm using a Mac Book Pro running OS X version 10.7.5 and I find that fairly often, when I click and drag something (anything) that the mouse will not drop or release the item, and the only way I can fix it is to force quit the program.  I have been into the system preferences and tried to adjust those features to no avail.  This has been accuring for almost a year now.  I find that it does this most often after a reboot.  For now, if I reboot, I cannot drag and drop anything for about an hour, then after that, the drag and drop feature seems to work just fine.  Help!
    Side info:  I am also using BootCamp with Windows 7, if that helps
    Thanks, looking forward to some good advise!

    biggsbdavis:
    Try disabling and then re-enabling the Helvetica font. Sometimes that's all it takes.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.

  • Drag and drop feature is not working in Maverick?

    what can i do when the Drag and Drop feature is not working in my I Mac Using Maverick 10.9.4, it will not do it at all i must do copy and paste.
    reading from earlier forums this has been a problem in earlier versions for the mac.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Drag and drop feature won't work when loading to ipod from computer

    My ipod has been a source of joy for 1 1/2 years. Suddenly, my drag and drop feature has stopped me cold. I can't load my audiobooks from the itunes library to my ipod. Any ideas??

    Is the iPod still set up for MANUAL updating?
    Cheers,
    Patrick

  • Drag and Drop Feature in Flash

    I have multiple elements on my artboard that include the Drag and Drop feature allowing for the elements to be placed on top (overlapping) one another. When the third or fourth element is selected the previous element is forced behind its previous element. Is there anyway to keep the previously placed elements from repositioning, just keeping them stationery. Below is the code applied to the button instance which is inside of its respective movie clip.
    on (press, dragOver) {
              startDrag(_root.Element2);
    on (release, rollOut, dragOut) {
              stopDrag();
    on (press, release, dragOver, dragOut) {
              _root.x +=9;
              _root.Element2.swapDepths(_root.x);

    Try...
    Ring2.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);
    function fl_ClickToDrag_2(event:MouseEvent):void
              Ring2.startDrag();
              this.setChildIndex(Ring2, numChildren-1)
    or...
    Ring2.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);
    function fl_ClickToDrag_2(event:MouseEvent):void
              Ring2.startDrag();
              addChild(Ring2);
    You do not have to write unique drag/drop functions for each ring.  You can have a generic one that is shared by all...
    Ring1.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag); 
    Ring2.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag); 
    Ring3.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag);
    function fl_ClickToDrag(event:MouseEvent):void
        MovieClip(event.currentTarget).startDrag();
        addChild(MovieClip(event.currentTarget));
        stage.addEventListener(MouseEvent.MOUSE_UP, dropRing);
    function dropRing(evt:MouseEvent):void
        stage.removeEventListener(MouseEvent.MOUSE_UP, dropRing);
        stopDrag();

  • Creating a file that has drag and drop feature

    Hi,
    I'm working on a memory experiment and I want to create a file with a drag and drop feature.  I set an image as layer 1, and several images as layer 2. I would like to create a file where people can drag and drop on of the images from layer two onto a slot in layer one.  Ideally I would like it to remain stable if the place an image in the slot (meaning if they try to place one of the images from layer 2 into layer 1, I want it to allign perfectly).
    Help is greatly appreciated.
    Thanks.

    Check if using the Smart Guides snapping is something that could be useful for this. If the size of the objects are exactly the same the snapping is relatively easily when trying to put one object on the place of another. If the sizes are not the same then the center point indicator should be used as a target which require a little bit more effort. However enabling the Smart Guides is not a file feature, the user has to turn it on/off in Illustrator affecting all open documents.

  • Now that I have home share my drag and drop feature doesn't work to create playlists

    Now with Home Share there are two subsets of playlists.  One is on the hard drive of the acutual computer where the iTunes originated.  Once I am at a Home Share computer I cannot use the playlist feature.  I can CREATE a playlist and name it, but the drag and drop feature does not work for songs which are not directly located on this hard drive.  I can, for some reason, attach an iPod and make a list over on that, but that is all. 

    Because IE is running in a different user context. You cannot drag and drop anything from Explorer into a different user context. This isn't a "SharePoint" issue, as it relates to any application run as a different user.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Dreamweaver CS3 Drag and Drop feature

    I have been trying to create  two links on my index.html page in Dreamweaver CS3.  However, after I have cut and pasted a whole image in place of a three part image my drag and drop feature will not turn off.  Each time I attempt to highlight the text on the page by dragging the cursor over the text the entire image moves.
    Please help.  I need to create links to other pages.

    Thanks for your reply.  I didn't realize until this morning that I had a
    response.  Here is the code pasted in this email below:
    code for Falaffelking.com
    <!--
    body {
    background-image: url(file:///C|/Documents and Settings/Sam
    Shamsedean/Desktop/Falaffel_King/Website/Background_Pattern.gif);
    background-image: url(Background_Pattern.gif);
    background-color: #00267f;
    .style1
    .style2 {font-family: Arial, Helvetica, sans-serif}
    body,td,th
    -->
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length;
    i++)
        if (a.indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j].src=a;}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a)&&x.oSrc;i+)
    x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document;
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++)
    x=d.forms+;
      for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    x=MM_findObj(n,d.layers+.document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array;
    for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a))!=null){document.MM_sr[j+]=x; if(!x.oSrc)
    x.oSrc=x.src; x.src=a[i+2];}
    //-->
        <!-- ImageReady Slices (FalaffelKing-HomePage.psd - Slices:
    Catering_Home_off) >      <! End ImageReady Slices -->
    Welcome to: FalaffelKing.com 2007©
    Larry Robinson
    248-214-4990
    email: [email protected]

  • Why does the drag and drop feature not work?

    I have several files on my desktop.  When I try to move them o a new location, they just 'snap back' to their original position.  Why doesn't the drag and drop feature not function properly?

    I'm just trying to move some files to a new position on the desktop.

  • My drag and drop feature is not working

    How do I enable my drag and drop feature when it has stopped working?

    When you say it is frozen and not working... what exactly is happening when you try to drag a song to your Shuffle?
    CG

  • Drag and Drop Feature is not working

    I have a mid 2012 MacBook Pro running 10.8.3 and all of a sudden the drag-and-drop feature isn't working. I was dragging photos from my job's website and adding them to a folder, but after about three photos in, it stopped working and no matter what I do it won't drop into the folder. How can I solve this?
    Thanks

    Can you drag anything into the folder, such as files from another folder?

  • Drag and Drop Feature

    Can someone remind me from what table I can switch on the drag and drop feature and what field I need to change? Thanks

    Hi Niten,
    Also check this link:
    Re: Assigning Info object to different Info area
    Bye
    Dinesh

  • Can i link to a specific sent email within a cell like the "Show in Mail" drag and drop feature in iCal events?

    Trying to make a log of phone and email contacts with customers.  I want to link to the actual email I sent to the customer, like the "show in mail" drag and drop feature in iCal.  Thanks

    Links in Numbers can do only two things external to the document:
    Open a page on the web
    Open and address a NEW email message, ready to compose and send.
    Regards,
    Barry

  • UIX drag and drop editor for OAF?

    I posted the following question on the OAF forum, was told it might make more sense to do in the JDeveloper forum:
    I've been told there is a "drag and drop" editor for UIX which can be used with OAF. Is that correct? I am using the following with EBS 11.5.10:
    OA Framework Version 11.5.10.4RUP.
    MDS Version 9.0.5.4.89 (build 555)
    UIX Version 2.2.24
    BC4J Version 9.0.3.13.93
    If there is such an editor, where can I get it, and how do I install it?

    Shay, thanks for the response.
    I have not written any ADF code outside of the course I took a few months ago, but I'm aware of how powerful it is. My question has to do with using the same toolkit or something similar to create and/or modify OAF pages. My customer is using EBS 11.5.10, and as such is using JDeveloper 9.0.3.5. If I can show how to use ADF with EBS, even if it is in R12, I might be able to convince the customer to use ADF. However, any application we develop must work along with the rest of the EBS, so that means we must use the same security mechanism (responsibilities, menus, etc.).
    Currently, to my knowledge at least, there is nothing as simple as your demo which can be done with OAF. There is no drag and drop capability, unless I've missed something.
    Any comments?

Maybe you are looking for

  • Select query in a report

    Hi! Is it possible to modify a select query for a report in the following way: I have created two fields where users input values and operators. Operators selection is a static list consisting of: =, like , in Value field is a text field. The current

  • Problem in transferring file(presentation server) contents to internl table

    Hi Experts,       My requirement is to upload a file from presentation server and get the contents into an internal table then I need to update bespoke table based on the values of the internal table. I tried using both funtion module : WS_UPLOAD and

  • What hard drive does the iMac use ?

    I have a 17 inch iMac with intel Core Duo with 80GB hard drive. The screen is damaged because of vertical lines and i am replacing it myself and i thought it would be a good idea to upgrade the hard drive while i am at it. Am i correct in assuming th

  • Jasper basic help

    hello all, I need some basic help and info on jasper. if some one has used it and used it specially with swing, please let me know. I need some basic concepts of jasper. 1: can I send the reports to the printer directly? i mean, is there a class in j

  • I have banned you HP

    i spent the whole day trying to fix my {Content Removed} hp printer!! i finally used their "chat serivice" which was NO HELP AT ALL. so i finally called their number. the first guy i talked to was a complete moron. i am not really good with computers