Drag and drop in finder

When i want to drag and drop files or maps in finder the finder screen is moving upwards and the files above aren't visible anymore. This happens since OS X Yosemite.

I played with this a little bit and found that if you click somewhere on the actual name (the letters themselves) or on the icon, you will start the "drag and drop" mode. However, if you click and drag the in blank space after the letters (or between the letters and the icon), the multi-selection will start. If you click and hold on a file that is already selected, it will allow you to drag and drop. If you want to avoid having to aim at all, just double-click and hold the second click and it will let you drag and drop.
It seems there is no timing associated with it.
-Nik
EDIT: Apparently I was beat to the punch.
Message was edited by: ravenfollower

Similar Messages

  • Cannot import MIDI by drag and drop from Finder

    Cannot import MIDI by drag and drop from Finder. Try a MIDI file from http://rock.mididb.com/beatles/ and see if it works for you.

    http://discussions.apple.com/message.jspa?messageID=10048387#10048387 worked.

  • Can't drag and drop in Finder with trackpad or magic mouse

    I can't seem to drag and drop anthing in the Finder window since updating to Mavericks (10.9). I've tried changing all magic mouse and trackpad settings.  I can drag and drop windows and apps on the dock.  No sure what the issue is....any help is appreciated!

    Had the same problem. Reinstalled the software - all is well. Cured many ills with the initial installation - don't bother trying to play with permissions, etc. Just reinstall.
    Thank goodness this isn't Micro$oft or you'd have to sit in front of the computer to keep answering the "Okay to reboot" questions every time a chunk of code is installed.

  • Can't drag and drop in Finder

    I'm liking Leopard so far I guess, but I can't drag and drop anything on the Desktop or from Finder windows. Am I missing something?
    Jer

    Had the same problem. Reinstalled the software - all is well. Cured many ills with the initial installation - don't bother trying to play with permissions, etc. Just reinstall.
    Thank goodness this isn't Micro$oft or you'd have to sit in front of the computer to keep answering the "Okay to reboot" questions every time a chunk of code is installed.

  • Problem Copying Files using Drag and Drop in Finder

    When I try to copy files from a camera's SD disk into a folder in Finder, it always seems to copy the files to some other location other than the folder I drag and dropped to. And then, when I try to redo the drag and drop, I get a message that these files already exist in the desired folder, even though I don't see them there!
    Also when I create a new folder in Finder, it never places the new folder under the folder I've currently highlighted.
    I'd love to hear whats going on here!
    Ted

    tedpratt wrote:
    When I try to copy files from a camera's SD disk into a folder in Finder, it always seems to copy the files to some other location other than the folder I drag and dropped to. And then, when I try to redo the drag and drop, I get a message that these files already exist in the desired folder, even though I don't see them there!
    What Finder "view" option are you using, List, Icons, Columns, or Cover Flow, for this question and the one below? Are you dragging those photos onto the icon of a closed folder or somewhere else? Please describe the exact process that you're executing.
    Also when I create a new folder in Finder, it never places the new folder under the folder I've currently highlighted.
    When you say "under", do you mean "within"? A new folder will be placed in the folder that's open.

  • Safari Bookmarks Lost via Drag and Drop to Finder

    All of my most important bookmarks vanished without a trace after I dragged and dropped their folder from the "Show All Bookmarks" screen in Safari 4.0.3 to a Shared Network Drive in the Finder sidebar. The Shared Network Drive was not connected at the time (I hadn't realized), but I received no error message that the bookmarks could not be copied to the destination--the folder and its contents were simply gone. I've scoured all drives for the bookmark files with no luck, and I confirmed that dragging other files (not bookmarks) to the disconnected Shared Network Drive gives an error message and no change to file locations.
    Admittedly, this particular situation is somewhat rare, but it seems like a kind of shoddy black hole in the software: no alerts, no trash bin, no bookmark files to be found.
    Obviously this is a perfect example of why one should backup bookmarks via Time Machine, MobileMe, etc.--but I really just want to understand the problem, and to see it resolved if necessary. Any ideas? Similar experiences?
    Thanks for reading!

    Thanks very much for your reply, Carolyn.
    I tried a Spotlight search as you suggested, but found no file called "Safari Bookmarks.html," and nothing with a similar name. Would that be some kind of master log of my Safari bookmarks?
    I'm looking everywhere for an alternate record of those web addresses (router, cache, cookies, Google), but unfortunately I empty my Safari history regularly and nothing else has panned out so far.

  • Flash drag and drop not finding targets in Captivate

    I created a drag and drop game in Flash CS4 using Actionscript 2 which allows you to pull clothing onto a stick figure. If you get the clothes in the right place, over the target, then they stick, if not they return to their original position. It works fine but when I open it in Captivate 4 the targets no longer hold the objects. No matter where you place the clothes icons they will return to their original position.
    I have captivate set up for the correct Actionscript and the fps in captivate and the swf are the same. I've included the code I wrote below. Please help if you have any answers as to why this is happening.
    shirt_mc.onPress=function(){
    startDrag(this);
    shirt_mc.onRelease=shirt_mc.onReleaseOutside=function(){
    stopDrag();
    if (this._droptarget == "/targetShirt") {
    this.onTarget=true;
    _root.targetShirt.gotoAndStop(2);
    }else{
    this.onTarget=false;
    _root.targetShirt.gotoAndStop(1)
    shirt_mc.myHomeX=shirt_mc._x;
    shirt_mc.myHomeY=shirt_mc._y;
    shirt_mc.onMouseDown=function(){
    //this variable tells us if the mouse is up or down
    mousePressed=true;
    shirt_mc.onMouseUp=function(){
    mousePressed=false;
    shirt_mc.onEnterFrame=function(){
    //all these actions basically just say "if the mouse is up (in other words - the clip is not being dragged)
    // then move the MC back to its original starting point (with a smooth motion)
    if(mousePressed==false&&this.onTarget==false){
    this._x-=(this._x-this.myHomeX)/5;
    this._y-=(this._y-this.myHomeY)/5;
    pants_mc.onPress=function(){
    startDrag(this);
    pants_mc.onRelease=pants_mc.onReleaseOutside=function(){
    stopDrag();
    if (this._droptarget == "/targetPants") {
    this.onTarget=true;
    _root.targetPants.gotoAndStop(2);
    }else{
    this.onTarget=false;
    _root.targetPants.gotoAndStop(1)
    pants_mc.myHomeX=pants_mc._x;
    pants_mc.myHomeY=pants_mc._y;
    pants_mc.onMouseDown=function(){
    //this variable tells us if the mouse is up or down
    mousePressed=true;
    pants_mc.onMouseUp=function(){
    mousePressed=false;
    pants_mc.onEnterFrame=function(){
    //all these actions basically just say "if the mouse is up (in other words - the clip is not being dragged)
    // then move the MC back to its original starting point (with a smooth motion)
    if(mousePressed==false&&this.onTarget==false){
    this._x-=(this._x-this.myHomeX)/5;
    this._y-=(this._y-this.myHomeY)/5;

    Hi all,
    Thanks for the informative replies.  My main issue seems to be when adding animations.  For example (I have included one below
    ).  I add this animation to my project and it runs perfectly.  I then add another, very similar animation, and the sound dissapears completely in the previous one! I remove the one added, preview the project again and the first animation works again!
    The only access I make to Root is through the successful click on the otherTARGET, that tells captivate to move to the next slide.  Could this be the root (exuse the pun) of my problems?
    Any help appreciated!
    stop();
    var target:Array=new Array(likelyTARGET,otherTARGET,other1TARGET);
    addListners();
    var more:Sound = new consequencefocuspeople();
    var less:Sound = new consequencemoreserious();
    function addListners(){
    for (var i in target) {   
    target[i].addEventListener(MouseEvent.CLICK, onClick);
    function onClick(event:MouseEvent):void
    var item:String = event.target.name;
    switch(item)
      case "otherTARGET":
         var mainmov:MovieClip = MovieClip(root);
          mainmov.rdcmndNextSlide = 1;
      break;
      case "other1TARGET":
      removeAllEventListner()
      var soundChannel:SoundChannel = more.play();
      soundChannel.addEventListener(Event.SOUND_COMPLETE, soundComplete);
      break;
      case "likelyTARGET":
      removeAllEventListner()  
      var soundChannel2:SoundChannel = less.play();
      soundChannel2.addEventListener(Event.SOUND_COMPLETE, soundComplete);
      break;
    function soundComplete(event:Event):void {
    addListners()
    function removeAllEventListner()
    for (var i in target)
      target[i].removeEventListener(MouseEvent.CLICK, onClick); 
    thanks,
    tristan

  • Cannot drag and drop in finder

    I am running the latest version of OS X Lion 10.7.2 and I can drag windows, drag to highlight files on the desktop.  I just cannot drag a file to a folder.
    What gives?

    I am running the latest version of OS X Lion 10.7.2 and I can drag windows, drag to highlight files on the desktop.  I just cannot drag a file to a folder.
    What gives?

  • I am organizing my external HD and want to move files NOT COPY them. How do I drag and drop folder contents without Mac automatically copying them to the "drop" location?

    I am sorting out all the clutter and duplicate files on my external HD. In doing this I am moving the entire contents of folders to new locations. Some of these folders cointain gigs of info. I do not want to have to spend large amounts of time waiting for hundreds of gigs to copy somewhere then  moving the originals to the trash and wait even longer deleting all of them. All I want to do is move the files up a subfolder, but the way Finder goes aobut doing it can be a 400 GB swing taking hours. How do I just "move" them?

    Check out this discussion. Worked for me.
    http://tinyurl.com/7dmh9p5
    Quote:
    When I do a drag and drop in Finder to move a folder into another folder it makes a copy of the folder in the new location instead of moving it like the help documentation says and like it used to do in Snow Leopard.  I have looked all over in preferences for a setting the contols the move/copy outcome of drag and drop and have been unable to find anything.  Is this the way Lion is supposed to work?
    MacBook Pro, Mac OS X (10.7.1)
    This solved my question by jsd2  on Oct 9, 2011 6:33 AM
    I did a global change of permissions for the entire documents account in the currrent user account using the get info and apply to enclosed items.
    I think what is happening is that the Documents folder normally carries an "everyone deny delete" ACL, meant to protect it from accidental deletion:
    $ ls -lde ~/Documents
    drwx------+ 6 t1  staff  204 Oct  9 08:51 /Users/t1/Documents
    0: group:everyone deny delete
    ACLs are special types of permissions that do not show up in GetInfo, but can get propagated if you click "Apply to Enclosed Items" on a folder that carries them. Affected files that acquire  that ACL would require password authentication to move or delete them.
    I think the following Terminal command (copy and paste it) should remove such ACLs from items within the Documents  folder:
    chmod -RN ~/Documents/*
    Message was edited by: miz_mdk

  • Drag and drop an email attachment into SharePoint Library

    Is it true that it is not possible to drag and drop a file attached to an email directly into a SharePoint Library?
    When I try I get the transparent effect and then an error message. Windows 7, Office 2013, SharePoint 2013.
    I would like to make sure it's not some configuration that can be changed.

    HI,not possible to directly drag and drop email from out look.You can save the mail as outlook template in drive and do drag and drop.please find the below links that explains functionality.
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Unable to send or recieve images via drag and drop?

    I am unable to send or recieve jpg and gif images by dragging and dropping from finder. How do I fix this?

    Hi,
    Where are you dragging them to ?
    You Can do it two ways using Drag.
    One is to the Buddy's Name in the Buddy list and letting go  (it gets sent as a loose file)
    The Second is to drag it to the Text field during a Text chat (Excluding Group Chats)
    The First causes an Invite to accept to pop up on the Buddies Screen.
    You can also see see when it is Accepted (you may even have to confirm sending depending on your Settings)
    The Second gets sent as a File Link in the Chat which the Buddy has to Also Accept...
    You can also send files by highlighting a Buddy and going the the Buddies Menu > Send File.
    This method tends to point to error with the File Transfer port not being open.
    So...
    Check you can send Files first by all three methods.  (these tends to ignore  Firewall and Router settings as it is Outgoing)
    Get your Buddy to Send by all three methods.
    IF this is AIM and you are having issues log out of the Account  (IChat > Preferences > Accounts > Account Info Tab (Deselect "Use this Account")
    Now go to the Sever Settings
    Change the Default port from 5190 to 443.
    iChat Logs in on port 5190 using the TCP Protocol.
    File Transfers or Direct IMs when done in a Chat are sent on Port 5190 but on the UDP Protocol (It is Peer-to-Peer).
    Some Router don't like this dual Use.
    If you still have issues then you will need to either Enable the Firewall and check iChat in in the List of allowed Apps and/or open  port 5190 in you router. (on the UDP Protocol if stated)
    10:22 PM      Wednesday; September 28, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • IPhoto file creation date inconsistencies during drag and drop

    I have noticed that if I drag and drop a photo from iPhoto to Finder, the file creation dates in Finder are inconsistent.
    (This question is related to drag and drop only and not File->Export, which always uses the export date and timestamp for the file creation date and thus does not suit my needs).
    TEST A -- If the EXIF DateTimeOriginated is 01/01/2013, and today's date is 03/03/2013, then:
    In some cases when I drag a file to Finder, the EXIF date is used as the file modification/creation date in Finder
    In some cases, today's date is used as the file modification/creation date in Finder
    In some cases, a date in between the EXIF date and today's date is used
    It appears that for case A1, these are files that do not have a modified copy.  That is, if you select the photo in iPhoto and then click "File" -> "Reveal In Finder", the "Modified File" choice will be greyed out.
    For cases A2 & A3, iPhoto has inexplicably decided to create modified versions of these files either today or sometime in the past.
    TEST B -- I have read that unexplained modifications are tied to the auto-rotate function in cameras, and it does seem to be the case when I performed the test below:
    Select a large group of landscape format photos (these would not have been auto-rotated), then drag and drop to Finder.  The file creation dates are set to the EXIF date
    Add some portrait photos to the group in (1).  Now the file creation date of ALL photos including the non auto-rotated photos are set to the current date
    The behaviour in B2 is clearly wrong, since the landscape photos should be the same as in B1.  This is bug #1.
    Furthermore, iPhoto appears to be inconsistent with when these modifications are made.  For example, I dragged & dropped an auto-rotated photo on 02/02/2013, then dragged & dropped it again today, then the file creation date in Finder (and also the date of the modified file in iPhoto, as shown in iPhoto File->Reveal In Finder->Modified File) can either the EXIF date (01/01/2013), the late of the last drag & drop (02/02/2013), or today's date (03/03/2013); there does not appear to be any rhyme or reason to this.  This is bug #2.
    In any case, saying "you should never use drag & drop in iPhoto" (as I have read in some other forum posts) isn't a solution, because Apple should either (a) support this function correctly or (b) remove it altogether.  Furthermore, I regularly burn photos to disk for others so having the file date and timestamps correctly set to the EXIF date helps keeping the photos sorted in the directory listings for multiple OS, so File->Export isn't a solution.

    File data is file data. Exif is photo data. A file is not a photo.  It's a container for a photo.
    When you export you're not exporting a file. You're exporting a Photo. The medium of export is a new file. That file is created at the time of export, so that's its creation date. The Photo within that file is dated by the Exif.
    There are apps that will modify the file date to match the Exif.
    The variation you're seeing is likely due to the changes in how the iPhoto library works over the past few versions. Drag and drop is handy, but is not a substitute for exporting, nor intended to be.

  • ICloud Drive on the Web won't let me drag and drop

    I paid for the 200GB of iCloud storage and created some test folders on iCloud Drive just to make sure the iCloud.Com iCloud Drive app works as well as Dropbox's online version. It is nearly as good, but iCloud Drive on the web won't let me upload folders (by drag and drop) from finder to the web iCloud app.  Apple says you can drag and drop.
    It tells me that "This type of file needs to be compressed before it is uploaded". I'm going crazy! I need to be able to drag and drop or use the upload button to upload FOLDERS...not just files.  But it gives me this message every time, even for a folder with one .pdf inside.
    Please help!
    Thanks

    That's not true. You can easily drag files to the web version of iCloud Drive. But when I try to drag a folder, it tells me I need to compress it first before uploading.  The point of iCloud Drive is that you can access it via iCloud.com anywhere and upload folders and files. I just can't seem to upload folders. Uploading files works fine.
    Does anyone have a fix?

  • Mail "New Message" window retreats to background after drag and drop attachment from Finder to Mail "New Message", click, and Finder window stays in foreground even when not in focus

    Hi, I'm surprised I can't quickly find if anyone else is having this issue. For me it has been going on since Lion on my 13" MacBook Pro 2011 and it's still persisting in Mavericks, and even still now that I've "downgraded" to a 15" MacBook Pro 2010 with Mavericks.  The behavior is odd and difficult to explain concisely. Basically, when I want to add an attachment to Mail, I'll Cmd+Tab over to Finder click and drag and Cmd+Tab back to Mail, and drop the attachment. At first it looks fine, but when I click in the New Message window where I just dropped the attachment, to move the cursor, it retreats to the background and the Mail Main Window comes to the foreground. Then, if I click on that, the Finder window that I just used comes to the foreground. Sometimes if I switched to another app before going to Finder to select the drag and drop, that other app window will appear in the foreground instead. If I click on the other app window that is now in the foreground, then the Finder window that was last used will come to the foreground. The only thing that seems to fix this switch-a-roo effect is Cmd+Tab-ing back and forth a few times, or click on the window "frame" at the top to move the window around.
    The way to prevent this is to have my Mail Message window visible in the foreground side by side with the Finder window when the drag and drop occurs (this is a tedious extra step if mulitple windows are open, or to use the add attachment command in the menu within Mail. But it sure is annoying buggy behavior.
    Thanks
    Daniel

    Yep, I get exactly the same thing when using Thunderbird mail client on my 2011 iMac running Lion. I've been putting up with it for at least a year, maybe longer.
    For me it appeared to start after a Thunderbird update, so I figured that was the cause and couldn't find a solution at the time. However I've now noticed it starting to happen in Apple Motion 4 when dragging files from Finder into a DropZone in my animations. Motion remains the active program but the Finder window sits on top until I Cmd-tab out to a third open program (ie not Finder) and back to Motion again.
    This is the first indicator I've had that it's an OS X issue.
    Be great to find a solution as D&D is by far my preferred way of adding attachments to emails and similar tasks.

  • How to auto close finder window after drag and drop?

    In Tiger, I would file away items on my desktop my dragging them to the hard drive and then digging down to the appropriate folder. The finder window would then close automatically after dropping the file. Is there a setting in Snow Leopard that will enable similar functionality? Whenever I complete a drag and drop now the finder window just stays open, which isn't a huge issue, but I'd still like to change it. Thanks!

    Here is the test code:
         lo_nd_table_data_source = wd_context->get_child_node( name = wd_this->wdctx_table_data_source ).
          lo_nd_table_data_source->get_static_attributes_table( IMPORTING table = lt_table_data_source ).
          "Read Dummy Table
          lo_nd_table_data_source->get_static_attributes_table( IMPORTING table = it_table_data_source ).
        CONCATENATE ls_airline_info-carrid ls_airline_info-connid ls_airline_info-fldate INTO ls_table_data_source-row_key.
          ls_table_data_source-parent_row_key = ls_airline_info-carrid.
          ls_table_data_source-is_leaf   = abap_false.
          ls_table_data_source-expanded  = abap_true.
            SELECT * FROM sflight INTO CORRESPONDING FIELDS OF TABLE it_table_data_source.
         LOOP AT it_table_data_source INTO wa_table_data_source WHERE carrid = ls_airline_info-carrid
                                                                and   connid = ls_airline_info-connid
                                                                and   fldate = ls_airline_info-fldate.
          ls_table_data_source-connid    = ls_airline_info-connid.
          ls_table_data_source-fldate    = ls_airline_info-fldate.
          ls_table_data_source-PRICE     = wa_table_data_source-PRICE.
          ls_table_data_source-CURRENCY  = wa_table_data_source-CURRENCY.
          "Select all data to the new dummy table structure.
          "Move one row of the table to ls_table_data_cource correspondingle.
          APPEND ls_table_data_source TO lt_table_data_source.
          DELETE ADJACENT DUPLICATES FROM lt_table_data_source.
       ENDLOOP.
          lo_nd_table_data_source->invalidate( ). "Clear the table data
          lo_nd_table_data_source->bind_table( lt_table_data_source ). "Refresh new data
    Thanks,
    Kiran

Maybe you are looking for

  • AT LINE-SELECTION won't be triggered when I use SET PF-STATUS?

    Dear All, I have a simple program that shows a list. My program has AT LINE-SELECTION event. I also use a GUI status for my list. When I ran my program and double clicked a line, the AT LINE-SELECTION event was never triggered. Later, I deleted the l

  • Purchase order number for 541 Mvt

    Dear all, i have transferred the material to third party via ME20 T.code. In ME2O t.code we can see the purchase order number but in the material document purchase ordernumber refernce is not coming, i need the PO number for the 541 mvt .how to achie

  • Auto delete old todo items and/or events

    Whenever I check the "Delete todo items after..." and the "Delete events after..." options in the Advanced preferences, iCal becomes really sluggish and after a while, my Mac freezes completely... even force quit key combo wont do anything. All I can

  • IllegalMonitorStateException Thrown From Synchronized Block

    Greetings, We recently had a case where a java.lang.IllegalMonitorStateException was thrown from section of code (in activemq) that I'm 99.9% sure was properly synchronized. Has anyone ever seen this exception thrown when the object whose wait method

  • HP Color LazerJet 2605dn - "Offline to Online"

    I am trying to get my HP Color LazerJet 2605dn printer to the "online status" - the printer keeps going "offline"  any suggestions?