My 'drag and drop' doesn't work using Mountain Lion OS X 10.8.2 on iMac

Drag and drop occasionally works between folders but very rarely - and now not at all. I have tried various remedies suggested onthis forum, but they didn't work.
Copy and paste is a real drag (sorry!)
Hugh

Please read this whole message before doing anything.
This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
Step 1
The purpose of this step is to determine whether the problem is localized to your user account.
Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
Test while logged in as Guest. Same problem?
After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
*Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
Step 2
The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
When you see the gray Apple logo, release the shift key.
If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
The login screen appears even if you usually log in 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.
*Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
Test while in safe mode. Same problem?
After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

Similar Messages

  • Drag and drop doesn't work on iMac running 10.5.8

    Drag and drop doesn't work on iMac running 10.5.8

    Please do a SMC and PRAM reset using the directions in iMac SMC and PRAM reset. If that doesn't work then please tell us exactly which mouse you own, it's possible it needs cleaning or replacing.

  • Drag and drop doesn't work and also control C and control V

    drag and drop doesn't work and also control C and control V

    Try this first. On your hard drive, go to Users / yourself / Library / Preferences.
    In that Preferences folder there is a file called com.apple.finder.plist.
    Trash that file and restart.

  • Drag and drop doesn't work after upgrading to Yosemite

    It is strange.  Since upgrading yesterday to Yosemite, my drag and drop does not working consistently.  I use drag and drop all of the time, into emails, moving files from one folder to another, moving music from finder to itunes, etc.  It seems each time I try to drag a file, initially the Finder window I am dragging from crashes and re-starts.  Once it re-starts, I actually am able to move a file as normal for about a minute or two.  After a minute or two, if I try to drag and drop a file, again it crashes and re-opens.
    Does anyone have any ideas?  I did submit a bug notice to Apple, but thought maybe someone would have a fix.

    I'm not sure if this experience relates to your issue but maybe..
    After upgrading my iMac to Yos, I could only select and copy files to relocate them. Frustrating for a couple of days. I eventually found that the setting on my trackpad was for three fingers over a selected file/folder window/etc moved the item to where I wanted. It had automatically changed to this preference. Its called a 'three finger drag'. The video shows a pane being moved but it also applies to all files etc. It can found in preferences/trackpad/point & click. Here you can turn it off if that is hat is causing the issue. Otherwise no software solutions I'm aware of. Good luck.

  • I am trying to import an mp3 audio file into garage band for editing.  drag and drop doesn't work. What now?

    I am trying to import an mp3 audio file into garage band for editing.  Drag and drop does not work. any ideas?

    Try reposting in the Garageband forums. You can find it at:
    https://discussions.apple.com/community/ilife/garageband

  • Problem Cursor disappears / Drag and Drop doesn't work

    Hey everybody,
    I have an urgent problem!
    Three butterflies are supposed to be dragged in an object.  My customized cursor is sort of a landing net to catch these butterflies.
    For the cursor I have this code:
    cursor_mc.startDrag("true");
    Mouse.hide();
    My drag and drop code is:
    cursor_mc.addEventListener(MouseEvent.MOUSE_DOWN, startMove);
    redbutterfly_mc.addEventListener(MouseEvent.MOUSE_DOWN, startMove);
    violetbutterfly_mc.addEventListener(MouseEvent.MOUSE_DOWN, startMove);
    yellowbutterfly_mc.addEventListener(MouseEvent.MOUSE_DOWN, startMove);
    cursor_mc.addEventListener(MouseEvent.MOUSE_UP, stopMove);
    redbutterfly_mc.addEventListener(MouseEvent.MOUSE_UP, stopMove);
    violetbutterfly_mc.addEventListener(MouseEvent.MOUSE_UP, stopMove);
    yellowbutterfly_mc.addEventListener(MouseEvent.MOUSE_UP, stopMove);
    function startMove(evt:MouseEvent):void {
       redbutterfly_mc.startDrag();
       cursor_mc.startDrag();
       violetbutterfly_mc.startDrag();
       yellowbutterfly_mc.startDrag();
    function stopMove(evt:MouseEvent):void {
       redbutterfly_mc.stopDrag();
       cursor_mc.stopDrag();
       violetbutterfly_mc.stopDrag();
       yellowbutterfly_mc.stopDrag();
    But when I'm clicking on a butterfly my cursor stops to move and stays on the position of the butterfly, which i'm dragging. After dropping it, there is no cursor at all so one doesn't know where the mouse is currently located.
    Does someone know why this doesn't work? I'm working currently with a mousefollower, because at the moment this is the only way it works..
    The mousefollower code is:
    addEventListener(Event.ENTER_FRAME, enterFrameHandler)
    function enterFrameHandler(event:Event):void {
        cursor_mc.x += cursor_mc.mouseX / 4;
        cursor_mc.y += cursor_mc.mouseY / 4;
    But now I have the problem that only the yellow butterfly moves even if I'm clicking on the red or the violet...
    Please help me!! Thank you in anticipation!

    You've solved the problem, thank you very much!
    Since it seems you know all about actionscript or at least all answers to my questions, I try my luck a further time
    If I wanted to collect the caught butterflies in a certain target, for example a flowerpot, where the butterflies can't be removed after dragged in, is this more or less the code for it? I haven't tried it yet but I'm searching the internet for something like that and maybe it is the right thing? And is in this case "myTarget" the name of the picture which is used as the target? Thank you in advance!
    function pickUp(event:MouseEvent):void {
        event.target.startDrag(true);
        event.target.parent.addChild(event.target);
        startX = event.target.x;
        startY = event.target.y;
    function dropIt(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){
            event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
            event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
            event.target.buttonMode = false;
            event.target.x = myTarget.x;
            event.target.y = myTarget.y;
            counter++;

  • Drag and drop doesn't work on non-intel machines

    It may be just me but Pages on my Macbook Pro allows me to drag and drop. The same document on my work G5 doesn't have this functionality. Both machines run 10.4.10 though the G5 doesn't have all the latest updates (corporate firewall issues)
    I am assuming its the different processor but would be interested to know of others experience.

    I drag & drop in Pages, Numbers, AppleWorks, etc. on both my G5 tower & my MacBook Pro all the time, no problems. There is a trick, though. You do need to click & then wait a half-second or so before dragging.

  • Drag and drop doesn't work

    Drag and drop does not seem to work for me. I have 2 IPods & an Ipad2. I use iTunes ios5. I see many posts on the Internet for this problem but no solutions! Help!,

    Patrick hello,
    Not quite sure what has happened here as a number of things may be wrong ... to correct and also do the necessary system maintenance at the same time follow the instructions here and re-install iTunes ...Let me know how it goes after that.
    1st take a copy of the iTunes Library file inside the iTunes folder for safety sake.
    TP

  • Drag and drop doesn´t work with photoshop

    Hi,
    I can't open any files in ps anymore by simply drag and drop the file on the ps app. open with in the context menue doesn't help either, ps is called up, but the file is not opened. looks like some other people had the same problem, but the links are all broken.
    your help would be very much appreciated.
    thanks
    g4, 1,25   Mac OS X (10.4.3)  

    Take a look in the root Library folder (not your home one) and see if you have the ScriptingAdditions folder with the Adobe Units Types file inside. If not that is your problem. You can either reinstall Photoshop, or you can create the ScriptingAdditions folder and download and unzip the file HERE, then put it in the ScriptingAdditions folder. NB: there is NO SPACE in the folder's name.
    Francine
    Schwieder

  • HT5444 mac pro 2007 and later doesn't work with mountain lion

    how do i downgrade back to a later version since lion or mountain lion dose not work with my pro tool 10 version?

    Downgrade Lion/Mountain Lion to Snow Leopard
      1. Boot from your Snow Leopard Installer Disc. After the installer
          loads select your language and click on the Continue
          button. When the menu bar appears select Disk Utility from the
          Utilities menu.
      2. After DU loads select your hard drive (this is the entry with the
          mfgr.'s ID and size) from the left side list. Note the SMART status
          of the drive in DU's status area.  If it does not say "Verified" then
          the drive is failing or has failed and will need replacing.  SMART
          info will not be reported  on external drives. Otherwise, click on
          the Partition tab in the DU main window.
      3. Under the Volume Scheme heading set the number of partitions
          from the drop down menu to one. Set the format type to Mac OS
          Extended (Journaled.) Click on the Options button, set the
          partition scheme to GUID then click on the OK button. Click on
          the Partition button and wait until the process has completed.
      4. Quit DU and return to the installer. Install Snow Leopard.
    This will erase the whole drive so be sure to backup your files if you don't have a backup already. If you have performed a TM backup using Lion be aware that you cannot restore from that backup in Snow Leopard (see below.) I suggest you make a separate backup using Carbon Copy Cloner.
    If you have Snow Leopard Time Machine backups made while on Snow Leopard, then you may do a full system restore per #14 in Time Machine - Frequently Asked Questions.  If you have subsequent backups from Lion, you can restore newer items selectively, via the "Star Wars" display, per #15 there, but be careful; some Snow Leopard apps may not work with the Lion/Mountain Lion files.

  • Drag and drop doesn't work in Optimise Toolbars

    when I try to add an icon to the taskbar, nothing happens. The moved icon is shown as being in an unusable place (black circle with diagonal bar).
    Also I cannot unlock the elements in the toolbars to rearrange them...

    You can only drag icons onto one of the toolbars at the top.<br />
    If you want them on the Status Bar then that should be supported by that extension.
    TotalToolbar: http://totaltoolbar.mozdev.org/

  • Illustrator extension - Drag and drop is not working on mac

    During testing my extension on Mac,I noticed that drag and drop doesn't work as expected. Therefore I have created a new simple extension with two lists.
    <s:List id="lst1" label="name" dragEnabled="true">
         <tree>
              <name>a</name>
              <name>b</name>
              <name>c</name>
         </tree>
    </s:List>
    <s:List id="lst2" dropEnabled="true" dragMoveEnabled="true"> </s:List>
    This will allow lst1 items to be dragged and drop in lst2.
    This sample works fine on Windows and on Mac as AIR app  but not working as extension on Illustrator( Not able to drag and drop between list on mac).
    Any help or workaround would be appreciated.

    Thanks for quick reply and help. I am able to drag multiple files but this is giving problem in case of filename with spaces like "abc def.png". Can you please put some thoughts on this.
    DataFlavor uriListFlavor = new DataFlavor("text/uri-list;class=java.lang.String");
                   Reader in = (Reader)t.getTransferData(DataFlavor.plainTextFlavor);
                   BufferedReader br = new BufferedReader(in);
                   String uriStr;
                   while ((uriStr = br.readLine()) != null)
                       URL url = new URL(uriStr);
                       String category = GalleryUtils.contentsPanel.getCurrentCategoryPath();
                       GalleryUtils.generateILPFromFile(new File(url.getFile()), category);
                   }Thanks
    Kanni

  • Drag and drop won't work in application

    Hello,
    I want to drag and drop elements of a listbox to another position inside ob the listbox.
    That works very fine as long as I use LabView during the programming of the VI.
    If I build the VI to a application drag and drop is not working anymore.
    What is the problem?
    Thanks.
    Ronny

    Just hit the bug myself.  Thanks for taking the time to post so I don't have to waste time debugging a know issue.
    Thanks,
    Matt
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

  • Drag and drop photos not working

    With Aperture 3.5 you can no longer Drag a photo to another app, such as iMessage and drop the photo into that app.
    The target Apps do not see the Drag operation and therefore ignore it (don't show the + when ready to accept the dropped photo).
    Drage and Drop continues to work on earlier Aperture releases even if you update to Mavericks.

    And it works with iMessages.
    After enabling the previews in Aperture's preferences you need to generate them. The previews settings will only automatically create previews for new photos. To generate them for older images, use the command "Photos > Update Preview".
    How large are the images, that you try to drag? For very small images Aperture will not create previews at all, if the images have not been adjusted.

  • Pages: I want to reorganize items in folders, drag and drop is not working. So how can I do this?

    Pages: I want to reorganize items in folders, drag and drop is not working. So how can I do this?

    This is the very top of the documents view in the Pages app. If you don't see this, swipe down in this window to reveal the Date and Name tabs like you see here. If you tap on - Name - that arranges all of the documents in alphabetical order in this view and it also arranges documents in the respective folders alphabetically. If you tap on - Date - that will arrange all documents by the date that they were created or last edited. You want to make sure that you keep Name as the default at the top.
    Trust me, this does work. If you name the chapters alphabetically .... Chapter 1, Chapter 2, Chapter 3, or if you simply name them A, B, C, D, etc. they will be arranged in that order using the Name button at the top, which uses alphabetical order to arrange the documents.

Maybe you are looking for

  • Problems with 990FXA-GD80 and AMD FX8350

    Hello, I built this PC back in March, and ever since I have been having problems with it. I get BSOD every now and then. It usually only happens when I am playing a game or trying to render a video. The last time I tried running Prime95, my computer

  • Divx online streaming issue - no video

    hi, i am a first time mac buyer and own a macbook pro 2011. I am trying to view online streaming videos and i am getting audio but no video. i have tried safari in 24bit and i have tried using firefox instead but with no luck. i am able to view alrea

  • Movies on DVD don't view with high resolution on my monitor

    I tried playing a few different movies on DVD on my iMac and the resolution is crappy. The picture quality is really bad and looks very grainy. Is there some way of making the picture crystal clear on my monitor?

  • Inkjet printer recommendations wanted.

    Can anyone recommend a good, photo quality inkjet printer that takes 11x17" paper, that will make good prints directly from ID? We use an old, clunking Epson Stylus Color 3000 (and an old laptop with Tiger loaded to run the antique printer driver) fo

  • How can the Changes be seen in Output Message Cond. maint. for Purcha. Ord.

    Dear All Gurus,                                                                                 User had maint. the Cond. record in MN04 as for Com. code --> with Option - 5 email and Dispatch time as 4 , but as the P.o created then in Message tab th