Drag and drop from Aperture not working?

This sounds like a pretty stupid issue but... when I attempt to drag & drop an image from Aperture (to anywhere, e.g. desktop, iweb, mail) it usually doesn't let me. Some photos will drag out but most won't (Two pictures of the identical format and size - one will let me drag&drop it and the other won't), and the export feature takes forever. I tried making sure that aperture is maintaining the previews and that the file to export is half size but still not working... any ideas?

Not stupid at all. That's a feature I use all the time and I'd be pretty PO'd if it wasn't working.
Your profile doesn't indicate whether you're running Aperture 3.x or not. Did the problem appear after an update or has it always been that way on your installation?
-Steve

Similar Messages

  • Widget, Drag and Drop from palette not working.

    Hi All,
    I am trying to create a Widget using Eclipse and SAP Widget Tool.
    I was working on a simple widget creation from a custom widget template.
    The drag and drop option from palette doesn't work in my eclipse even after SAP widget tool has been installed.
    Please suggest.
    The configurations are.
    Eclipse - 3.4.2 ganymede
    Yahoo Widget Engine - 4.5.2
    jdk - 1.6.0_14 (latest one).
    Please help.

    I had to reinstall eclipse.

  • Drag-and-drop from bookmarklet not working in Firefox 13

    Here is our bookmarklet code snippet:<br />
    <br />
    <pre><nowiki>javascript:var%20r=Math.random()*100;var%20protocol='http://www.vflyer.com/main';if%20%20((location.href).indexOf('https')!=-1){protocol='https://www.vflyer.com/main'};(function(){var%20d=document;var%20s;try{s=d.standardCreateElement('script');}catch(e){}if(typeof(s)!='object')s=d.createElement('script');s.type='text/javascript';s.src=protocol+'/bookmark.jsp?r='+r;d.getElementsByTagName('head')[0].appendChild(s);})();</nowiki></pre>
    It seems that in Firefox 13, users can no longer drag and drop content from the bookmarklet into the browser. I tried disabling all add-ons but that didn't work. I also saw a thread about the Torbutton extension inhibiting drag-and-drop, but I don't have that extension. Any ideas?

    Do you mean dragging content from the pop-up iframe that the bookmarklet creates?
    Does it work if you use copy and paste instead of dragging?

  • Drag and drop from Pallette not working

    I installed studio enterprise 8.0
    When I click any object from the palette to drag into my design screen, it does not drag to a specific location. I don't have the option to move it around the screen and place it where I want. Is there a setting problem or the version problem?

    Could you please clarify, which palette are you referring to? If it's the swing GUI form editor palette, then probably it's better to look for advice on the [email protected] mailing list, since Java Studio Enterprise inherits the GUI editor from the NetBeans IDE.

  • 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 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?

  • AS3 drag and drop masked bitmaps - not working

    I have a drag and drop project using bitmaps that were masked using fireworks. All bitmaps are PNG (fireworks files) and one object is GIF. All objects were converted into movie clips.
    PROBLEM
    All movie clips from PNG's can be dragged, but they can't be dropped. However, the GIF movie clip responds to both drag and drop.
    ActionScript worked when all movie clips had GIF's.
    Is this problem because the objects were masked or for any other reason?
    Note: Objects were masked because their border is very fussy and cropping them doesn't help with the quality of their image.
    // ACTION SCRIPT
    var startX:Number;
    var startY:Number;
    var counter:Number = 0;
    name_mc1.addEventListener(MouseEvent.MOUSE_DOWN, placeUP);
    name_mc1.addEventListener(MouseEvent.MOUSE_UP, placeDown);
    name_mc2.addEventListener(MouseEvent.MOUSE_DOWN, placeUP);
    name_mc2.addEventListener(MouseEvent.MOUSE_UP, placeDown);
    name_mc3.addEventListener(MouseEvent.MOUSE_DOWN, placeUP);
    name_mc3.addEventListener(MouseEvent.MOUSE_UP, placeDown);
    name_mc4.addEventListener(MouseEvent.MOUSE_DOWN, placeUP);
    name_mc4.addEventListener(MouseEvent.MOUSE_UP, placeDown);
    name_mc5.addEventListener(MouseEvent.MOUSE_DOWN, placeUP);
    name_mc5.addEventListener(MouseEvent.MOUSE_UP, placeDown);
    name_mc6.addEventListener(MouseEvent.MOUSE_DOWN, placeUP);
    name_mc6.addEventListener(MouseEvent.MOUSE_UP, placeDown);
    name_mc7.addEventListener(MouseEvent.MOUSE_DOWN, placeUP);
    name_mc7.addEventListener(MouseEvent.MOUSE_UP, placeDown);
    function placeUP(event:MouseEvent):void {
    event.target.startDrag(true);
    mess_txt.text = "";
    event.target.parent.addChild(event.target);
    startX = event.target.x;
    startY = event.target.y;
    function placeDown(event:MouseEvent):void {
    event.target.stopDrag();
    var myTargetName:String = "target" + event.target.name;
    var myTarget:DisplayObject = getChildByName(myTargetName);
    if (event.target.dropTarget != null && event.target.dropTarget.parent == myTarget){
      mess_txt.text = "Good Job!";
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, placeUP);
      event.target.removeEventListener(MouseEvent.MOUSE_UP, placeDown);
      event.target.buttonMode = false;
      event.target.x = myTarget.x;
      event.target.y = myTarget.y;
      counter++;
    } else {
      mess_txt.text = "Try Again!";
      event.target.x = startX;
      event.target.y = startY;
    if(counter == 7){
            mess_txt.text = "Congratulations, you're finished!";
    name_mc1.buttonMode = true;
    name_mc2.buttonMode = true;
    name_mc3.buttonMode = true;
    name_mc4.buttonMode = true;
    name_mc5.buttonMode = true;
    name_mc6.buttonMode = true;
    name_mc7.buttonMode = true;
    Thanks for any help!
    German

    Kglad:
    Thanks. Your code worked as well.
    German

  • Drag and drop album art not working / iTunes 7.0.1.8 & WinXP SP2

    Drag and dropping album art isn't working for me after upgrading to iTunes 7 in WinXP SP2. Anyone else experience this problem?
    Update: Drag and drop works from a webpage but not from Windows explorer or Windows Picture & Fax Viewer.

    You only need an iTunes account to automatically get artwork. Usually artwork for CDs you import yourself is gotten from somewhere else. I tend to use allmusic.com. Occasionally I will have to use google to find the artwork though.
    Have never tried to add artwork from anywhere but a webpage though.

  • Drag and Drop Cursor changes - not working

    I have fully implemented a working drag and drop Swing application, but I am running into problems with the cursor.
    My application has some drop targets that set the cursor to DragSource.DefaultCopyNoDrop, and some that set it to DragSource.DefaultCopyDrop. The problem is once I change the cursor DefaultCopyDrop, I can never change it to NoDrop. I can however change it from NoDrop to Drop. I have tried it with jdk1.4 beta3 and rc.
    An example of this cursor behavior can be found at:
    http://www.javaworld.com/javaworld/jw-03-1999/jw-03-dragndrop.html
    I found some information related to this at:
    http://developer.java.sun.com/developer/bugParade/bugs/4407521.html
    I have tried using a null cursor in the startDrag method.
    Does anyone have a DND example where the cursor consistantly changes to give drop feedback that works with the DND in JDK1.4?
    Dave

    Hi, I also want to implement DND. I am using JRE1.3.1
    I am also facing the cursor change problem. i have passed null in the startDrag method. This problem get solved to some extent, but still many times cursor is not changing. I have created my dragSource and drag Target
    in the Constructor of my tree in a separate thread like
    // IN CONSTRUCTO OF TREE
    SwingUtilities.invokeLater( new Tree_DropTarget(this) );
    SwingUtilities.invokeLater( new TreeDragSource(this,
    DnDConstants.ACTION_MOVE) );
    Than in the target and source class
    publi clas Tree_DropTarget implements DropTargetListener,Runnable
    public Tree_DropTarget(JTree tree)
    m_dropTarget = tree;
    public void run ()
    try
    Thread.sleep(2000);
    catch (InterruptedException e)
    m_dropTarget = new DropTarget (m_targetTree, this);
    Same Way I have done for DragSource.
    Is anything wrong there???
    I am also facing 1 more proble, sometiems DND events are getting fired on navigating through the nodes, even though i am not dragging the node. And getting the Below exception some times
    java.lang.NullPointerExceptionat sun.awt.dnd.SunDropTargetContextPeer.handleMotionMessage(Unknown Source)
         at sun.awt.windows.WToolkit.eventLoop(Native Method)
         at sun.awt.windows.WToolkit.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    This exception I am not able to get who is throwing as all exceptions i am catching.
    Please help me, if u had any idea about these problems.

  • In Oats Drag and Drop Api is not working in Firefox Browser

    To Write OAts test for Drag and Drop functionality
    we are using "dragTo" API.
    Ex :
    web.image("/web:window[@index='0' or @title='Fusion Applications']/web:document[@index='0' or @name='aqizmnwha_1']/web:img[@absoluteLocator='" + sourceIndex + "']")
                     .dragTo("/web:window[@index='0' or @title='Fusion Applications']/web:document[@index='0' or @name='aqizmnwha_1']/web:img[@absoluteLocator='" + targetIndex + "']");
    This Api is not working in firfox.(works in IE browser).
    Is there any other way we can test DnD functionality in firefox and IE?
    Thanks in Advance!
    Thanks,
    Siddi

    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.

  • GNOME 3 : "drag-and-drop" + "Alt-Tab" not working

    Hello,
    In GNOME 3.2.1 with Mutter 3.2.1 (current ones in Arch), it is supossedly fixed the following "bug":
    Mutter 3.2.1 changelog:
    * Allow keyboard window switching (alt-Tab) during drag-and-drop [Matthias, #660457]
    But I can't make it working.
    As test, I open a folder (maximized) and vlc (background). I drag a movie file with left click mouse and pressing Alt-Tab makes nothing.
    In fact, when I press Alt the file icon changes to a question mark "?"...
    Has anyone been able to make it work?
    Thanks in advance,
      Franz
    Last edited by franzrogar (2011-11-01 08:48:40)

    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.

  • 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

  • The drag and drop feature is not working on the touchpad

    My drag and drop stopped working on my macbook pro, the model number is the
    MB 13.3/2.4/2X1GB/250/SD/BL-KB-USA
    MB467LL/A
    The systems is runnng Snow Leapard, I have in the preferences, drag lock disabled, dragging enabled, the operating system is 10.6.8.
    I also reloaded the system disk, same issue.
    Any help would be appreciated.
    Thanks,
    Tom

    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 into playlist not working + changing of timezone

    Hey All
    Ive searched and cant find an answer to this anywhere
    My PC crashed pretty hardcore like (unable to load vista to deauthorize account before formatting PC) so a format ensued, once i formatted i reinstalled itunes and reauthorized my account for my ipod touch did the whole back transfer and delete and resync of my ipod so now i have to put all my music back onto the ipod touch (well not all my music just the stuff i want to listen too)
    So i went and made a new blank playlist (not a smart list) and proceeded to fill ... when i came accross my problem i cant drag music from the library to my new fresh (definitely not a smart playlist) Playlist
    ive checked the "manually manage box" in the ipod summary screen but even when the ipod isnt plugged in i cant drag and drop. i can right click and add to playlist fine ... just not drag and drop
    also when i plug my ipod in it sets my timezone to london and changes my time .... rather annoying considering i use my ipod as an alarm clock
    any assistance is greatly appreciated
    Thanks Rey

    You're Very Welcome Nick!
    I'm glad the fix was that simple!
    Also, I notice that you have marked your question as answered, but have not utilized the Helpful or Solved options. That may be intentional, but, if you are not aware of the benefits, of using that function, here is some information.
    When you mark the appropriate posts as Helpful (5 pts) 2 available, or Solved (10 pts) 1 available, you are Thanking the contributors, by awarding them points.
    In threads with multiple replies, it also alerts other readers, to which answers may have been helpful, or solved the issue.
    This info, and more, can be viewed by clicking on
    ? Help & Terms of Use, located under your login name, on all "Discussions" pages.
    Specifically What are question answers?.
    ali b

  • Drag and drop data object  not working in jdev 11.1.1.7

    I am trying to do quote process lab and faced this issue.
    When defining the user task parameter in jdev 11.1.1.7 i am not able to drag and drop the data object in parameter list section.

    Infact i am trying to create a simple BPMN projoect but it doesn't allow the data object to be drag and dropped in the parameter list.
    This same thing was working fine for me in Jdev 11.1.1.6,Is there a bug in jdeve 11.1.1.7 ? Has anyone tested with the latest release?

Maybe you are looking for