No longer able to drag & drop to desktop..

I was hoping someone here could help me.
My son thought he (we) would like to try a new finder type app.
I told him (after 2 days) that he could do this on "his computer" not mine.
Once he removed the application and put everything back in order.........
I no longer can drag & drop images to the desktop?!?
He has no clue and I am praying that someone with smarter skills than me can help me out.
Thanks in advance

Move the com.apple.finder.plist file out of your users /Library/Preferences/ folder to the Desktop, OPTION-click & hold the Finder's Dock icon, select Relaunch, and see if that fixes the problem. If so, delete the moved file and reset your other Finder preferences. If you don't remember how you had things, check the Finder's preferences via Finder->Preferences. If this doesn't fix the issue, create a new admin user account, log into it, and see if the problem persists there.
Once you resolve the issue, ban your son from your computer.

Similar Messages

  • No longer able to drag and drop files to an iPhone in iTunes.

    I accidentally unplugged my iPhone 3G before it was finished syncing in iTunes and I lost all of music, playlist, podcasts, etc. I had copied to it. The problem I am now having is that I can no longer drag and drop anything to my iPhone in the Devices list. The only way that I can now get files onto it is by syncing with my existing play lists, etc from iTunes. I can't even select it in the Devices list and create a new playlist on it by clicking the new playlist button at the bottom. I really liked the option to just drag whatever I wanted onto it. It's really a pain now. It does sync properly, so thankfully that works.
    Does anyone know why I know why I'm no longer able to drag and drop music, etc. to an iPhone in iTunes.
    Thanks

    Man, I can't believe it...that was the fix. I had it checked previously, obviously because that's how I was doing it before. Don't know how it got unchecked, but that IS the solution. I thought something bad had happened and wasn't thinking clearly – feel like an idiot now.
    THANKS for you help.

  • No longer able to drag and drop

    after purchasing songs from itunes I am no longer able to drag and drop from itunes to ipod

    Do you have disk mode and manually manage music and videos enabled for your iPod sync preferences with iTunes?

  • Able to drag drop items of combobox but want to disable 1st item

    Hello Sir,
    I am able to drag drop elements of the combobox.
    Here is my code...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:local="*" xmlns:utils="adobe.utils.*" xmlns:controls="qs.controls.*" initialize="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.DragEvent;
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.controls.ComboBox;
    import mx.controls.Alert;
    [Bindable]
    public var str:String = "";
    public var comboLength:int;
    public function init():void
    var xml:XML = <test>
    <col>
    <col1>one</col1>
    </col>
    <col>
    <col1>two</col1>
    </col>
    <col>
    <col1>three</col1>
    </col>
    <col>
    <col1>four</col1>
    </col>
    <col>
    <col1>five</col1>
    </col>
    <col>
    <col1>six</col1>
    </col>
    <col>
    <col1>seven</col1>
    </col>
      </test>;
      cb1.dataProvider = xml;
      comboLength = xml.col.length();
      cb1.rowCount = comboLength;
      str = (xml.col[0].col1.toString());
      cb1.prompt = str;
    public function closeHandler(event:Event):void
    if(MouseEvent.DOUBLE_CLICK)
    // Alert.show("Click Event");
    public function changeHandler(event:ListEvent):void
    // Alert.show("Single Click Event");
    public function doubleClickEvent(event:MouseEvent):void
    Alert.show(event.currentTarget.toString());
    Alert.show(event.target.toString(),"Double Click");
    public function dragEnterFunction(event:DragEvent):void
    Alert.show(event.target.parent.toString());
    ]]>
    </mx:Script>
    <mx:ComboBox id="cb1" prompt="prashant" doubleClickEnabled="true" doubleClick="doubleClickEvent(event)"
    close="closeHandler(event)" dragEnter="dragEnterFunction(event)" >
    <mx:itemRenderer>
    <mx:Component>
    <mx:DataGrid itemClick="outerDocument.cb1.text = this.selectedItem.col1.toString();itemSelected(event)"
    dragEnabled="true" dropEnabled="true" dragDrop="draDropHandler(event)" dragMoveEnabled="true" headerHeight="0" showHeaders="false"
    creationComplete="init()" click="clickable()"
    itemDoubleClick="doubleClickEvent(event)">
    <mx:columns>
    <mx:DataGridColumn dataField="col1" headerText="" id="da" disabledColor="white"  />
    </mx:columns>
    <mx:Script>
    <![CDATA[
    import mx.controls.DataGrid;
    import mx.events.DropdownEvent;
    import mx.events.ListEvent;
    import mx.events.DragEvent;
    import mx.controls.Label;
    import mx.controls.Alert;
    public function clickable():void
    //Alert.show("clickable");
    public function itemSelected(event:ListEvent):void
    Alert.show(event.itemRenderer.data.col1,"Single Click");
         public function draDropHandler(event:Event):void
    Alert.show(event.target.parent.toString());
    public function dragEnterFunction(event:DragEvent):void
    Alert.show(event.target.parent);
    override public function set data( value:Object ) : void
    this.dataProvider = value.col;
    //outerDocument.cb1.text = this.selectedItem.col1.toString()
    //myList.addEventListener(ListEvent.ITEM_DOUBLE_CLICK, onItemDoubleClick,
    public function doubleClickEvent(event:ListEvent):void
    Alert.show(event.itemRenderer.data.col1,"Double Click");
    ]]>
    </mx:Script>
    </mx:DataGrid>
    </mx:Component>
    </mx:itemRenderer>
    </mx:ComboBox>
    </mx:Application>
    But now i want to disable drag drop of the 1st item and the last item.
    And also add double click of each item.
    Can someone please help me out.
    Awaiting your reply.
    Thanks in advance.

    Hello Sir,
    Thanks a lot for your reply.
    I have implemented some thing can you please help me out with this?
    In this can you help me out with the double click event????
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
    xmlns:local="" xmlns:utils="adobe.utils." xmlns:controls="qs.controls.*"
    initialize="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.DragEvent;
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.controls.ComboBox;
    import mx.controls.Alert;
    import mx.controls.listClasses.ListBase;
    import mx.core.UIComponent;
    public var str:String = "";
    public var comboLength:int;
    public function init():void
    var xml:XML =
    </mx:Application

  • I want to be able to drag/drop to my iPhone

    Hi there. I have a 2G original iPhone with 3.1.3 and the latest version of iTunes.
    Currently I am synced only to my Macbook. I want to be able to drag/drop music and videos right to my iPhone instead of going through my iTunes library but I can't do it because all the music in my iPhone is gray.
    Here is an image of what happens - http://regmedia.co.uk/2007/07/09/iphone3.jpg
    Thanks

    You can transfer music and videos via the iTunes sync process, or manually manage music and videos with an iTunes library on a single computer only. You can do one or the other, not both at the same time. If you want to manually manage music and videos, this is selected under the Summary tab for your iPhone sync preferences with iTunes. If this content was transferred to your iPhone via the iTunes sync process previously, switching to manually manage music and videos will erase all iTunes content from your iPhone first. You cannot manually manage music and videos with an iTunes library on multiple computers as is possible with an iPod that supports disk mode.

  • No longer able to drag attachments to/from message to desktop

    Early 2011 iMac- right before the quad-cores w i3 processor. Running Lion, fully updated
    I was always able to drag my attachments from my email(Apple Mail) to my desktop.
    About 2 hours ago it stopped letting me drag them and combine pdfs in Preview. (Scenerio: Receive an invoice, drag it to my desktop. scan a pack slip, marry the two pdfs and save on a server)
    Ran disk utility. Rebooted, etc. 
    I did some digging and saw a few posts but not much here. Any thoughts?

    Yes, I shut it down when I left yesterday. Working this AM. I usually only shut down on the weekends-
    But, I did reboot yesterday? oh well,Thanks!

  • No longer able to drag Outlook emails to Outlook calendar events

    I use Outlook 2007 on my PC, and sync it to my iPhone and iPad using iCloud.  I used to be able to drag an email to the notes section of an Outlook calendar event, but it looks like this ability/feature is now gone.  Can I get this feature back? I even tried opening an old Outlook calendar event to which I knew I had dragged-and-dropped an email.  when I opened the event, it momentarily flashed up with the attached email in the event notes section, but then the email disappeared.  Frustrating!  I drag emails to this section so that I have the details of my event linked to the event, and not cluttering up my inbox.

    Have you tried clicking "Reset Sync History..." in iSync preferences?
    Also, make sure you have at least one 'local' calendar set up in iCal - rather than just 'subscribed' ones.

  • I am no longer able to drag and drop my downloaded files

    in yahoo. i, on a daily basis receive about 10 pdf documents and several .dxf files. also autocad .dwg files and jpg files. pretty much any file i have to work with comes to me in my email.
    i used to be able to select the file, then download it. after i was done downloading it i could open my download library, and drag and drop the file onto my desktop or other open folder on my pc.
    suddenly. i cannot.
    i have changed browsers for the time being and will not be able to continue with firefox until this is solved.
    i am running firefox 20.0.1 and windows vista sp1

    im glad that somebody is atleast trying. perhaps i need to be more clear.
    i will step by step describe the issue in detail.
    1) i open an email that contains an attachment .dxf or .pdf
    2) i click on the attachment shown in the email and aprompt comes up asking if i want to open or save the attachment.
    3) i select save. (by default it saves to a downloads folder. but i have also chosen to use other folders (when i did that it wouldnt save them)
    4) i highlight the downloads arrow on the right top side of my browser and click it
    5) it pulls down a list of the files that i USED to be able to click and drag onto my destop, or anyplace i chose
    6) used to be when i clicked and held the left mouse button down on top of a file of my choosing it would highlight and as i began to drag, a ghost image would appear of the file i was dragging. showing a (/) symbol next to it showing i couldnt drop the file within the browser and a + simbol showing that i could drop the file when the file was hovering over a place where i could drop the file such as my desktop or other folder. now, when i click and hold on the file.... I DONT get anything. when i drag. nothing follows. while i am "dragging" in the area that is my browser, i get the pointy finger icon. as soon as i enter an area where i could have dropped the file as before, i get my standard cursor arrow.
    its really as if the drag and drop feature just dosent work IN FIREFOX.
    i can drag and drop files all day long everyplace else.

  • No longer able to drag and drop to edit pdf

    I have adobe acrobat 11.0.06 and Mac OS 10.9.1.  I use to be able to add files to an existing pdf via the "Page Thumbnails"view. I would drag the files and drop them there and "bingo" the pages would appear where I dropped them and in the correct order.  Now I cannot.  Now, only the last page of the file I am dragging will appear.  I can add the files using the tools>Insert pages>"Insert from file"  .

    Do you have disk mode and manually manage music and videos enabled for your iPod sync preferences with iTunes?

  • No longer able to drag remote desktop window

    I used to be able to grab the "Connection Bar" that's pinned to the top of a maximized remote desktop window, and drag the window away from the edge, over to another monitor, then push it against the top edge to have it become maximized on the
    other monitor.
    But now, when I grab the Connection Bar and try to drag, the bar will only slide left and right. I can't unmaximize the window by dragging the bar away from the edge. I can only change the position of the bar along the top edge.
    Of course, I can click the "Restore" icon on the bar and un-maximize it, then drag and dock the window in another monitor. But the point is, I used to be able to do it in one single fluid stroke, now I have to explicitly unmaximize. It used to
    be the case that just dragging the window away from the edge caused the window to unmaximize, but not now.
    Is there a setting that controls this "drag-to-restore-down" that I'm talking about? Or has this been intentially changed by some update?

    Hi,
    This is weird, I can drag it as my mind without any obstruction.
    I suspect this is interfered by some software conflict, please test in Clean Boot mode to see if this issue persists.
    How to perform a clean boot in Windows
    http://support.microsoft.com/kb/929135
    Alex Zhao
    TechNet Community Support

  • ITunes 11.01 no longer able to drag and drop.

    I used to just drag a song from my itunes libaray to my 2nd generation shuffle. Now with itunes 11.01 can no longer do this . How do I move a song.

    Please disregard I think I figure it out. Thank you.

  • No longer able to drag and drop artwork off amazon

    I went through and edited all the albums' artwork that iTunes could not find by getting the image on amazon and just dragging and dropping the jpeg into the info box for the albums' songs. However, this does not work anymore. Any idea what happened? I can drag the image to the artwork square, but it will not apply.

    here is a user tip that worked for me:
    try this:
    you can add artwork by going these routes:
    1) individual tracks
    right-click and +get info+ on the file, go to the artwork tab and click on add. navigate to the image file on your HD
    2) multiple items
    select them all in iTunes, +get info+, copy the image out of Safari or Preview, click once into the artwork box and paste the image into it.

  • No longer able to drag and drop songs into playlists on iPhone?

    How's it going, I had to reset my phone the other day and I was able to add a playlist to the iPhone, but now it wont let me add selected songs to the playlist on my iPhone, only sync it through the playlist on my iTunes. What happened?

    Nvm I figured it out, the option I was looking for was under Summary on the iPhone "manually manage music and videos"

  • No longer able to drag icons to other pages?

    Before syncing my iPhone to desktop computer, I USED to be able to select and drag app icons from one page to another. Although iTunes says that I should be able to do this, nothing happens when I click-and-hold an App icon, other than the entire PAGE will move, as if I'm trying to rearrange the pages.
    I notice that I CAN, using the iPhone iteself, click-and-drag app icons, but so far haven't been successful in dragging one from, say, Page One to Page Three.
    This doesn't feel like an improvement. In fact, it's a real drag (no pun intended).
    What's up?

    Do you have disk mode and manually manage music and videos enabled for your iPod sync preferences with iTunes?

  • No Longer Able To Drag Files/Songs/Photos etc.

    I recently had a start up issue which was resolved by an Apple Genius at my local Apple Store but since he waved his magic wand I have been unable to drag files on the desktop, songs into playlists in itunes, photos into folders in iphoto etc.
    If I hold down the trackboard on the desktop and drag it I can draw a box to highlight various files but that it is.
    I recently posted this as part of another topic and had suggestions regarding resetting the PMU and trying the different gestures within system preferences > keyboard and mouse but without any joy.
    If I plug in a USB mouse the same issue remains so presumably it is not a problem with the trackboard.
    If anyone can help me it would be much appreciated.

    Just to be certain, you DID boot into Safe Mode and then restart normally and repair permissions?
    It's going to be difficult to back things up without doing an out-and-out clone to a FireWire external drive, since you don't have the capability of dragging and dropping to a CD.
    However, you could try this:
    First go to the Finder and select your Home Folder-the one with the house icon. From the File menu, choose Create Archive of "yourshortusername" and see if it compresses it to a manageable size. Once you have the archive of your Home Folder completed, restart into OS 9 and locate that zipped file on your hard drive. See if you can burn it off to CD(s) from the Finder in OS 9.
    Needless to say, I've never tried to do this, so I can't guarantee that it will work, but it's worth a try.
    This is a system-wide corruption, since it is the same for a new user, so it's not a preference file or something easily corrected (besides which, the normal procedure for troubleshooting preference files is to DRAG them to the Desktop-not possible for you).
    Do you happen to have DiskWarrior 4.0? If so, it occurs to me that now would be a good time to use it.

Maybe you are looking for

  • How to remove duplicate entries in OID due to an AD-OID bootstrap

    Don't worry about the "why" but there were changes made to the mapping file for an AD-OID synch and dipassistant commands mp and bootstrap run and now there are some duplicate entries for users in OID. The only difference between the duplicates for e

  • Dashboard in BEx 7.0 Excel Analyzer

    I have to develop a dashboard with 7 queries embedded in a single worksheet. All queries have output in the form of tables (grid analysis). I know, how to do that. But, is following a possibility : 1. Keeping size of each table fixed, so I can have w

  • Idvd says disk not recordable

    Need help with burning a disk from iDVD- always worked without issue, but now it rejects my DVD disks saying it is not recordable

  • AP Form Personalization

    Hi all, I have a requirement to do the AP invoice form personalization. The requirement is: When user enter description in AP Invoice Line and choose the Distribution Set. As normal, when click the Distribution button, distribution will generate acco

  • Select wioth extract() gives error

    Hello, am a bigginer! SQL> select proceedings.papers.extract('/paper/title/text()').getStringVal() from proceedings; select proceedings.papers.extract('/paper/title/text()').getStringVal() from proceedings ERROR at line 1: ORA-00904: invalid column n