Can't click-drag-drop

I having sudden and crippling trouble when I try to click and drag files in the finder. When I click-drag a file icon, almost always (>95% of attempts) nothing happens (or the file attempts to open). Rarely the icon moves--but usually some random, uncontrolled, unexpected distance on the screen. Then I "lose" it as if I had released the mouse button. This has resulted in files being dropped indiscriminately in other folders, opening unintended applications, etc.
A related (?) problem: similar malfunctions arise when I try to click and drag-select text in a document.
This happens with equal frequency and severity on each of two hard drives, one running 10.3.9 and the other running 10.4.7.
I hope someone out there recognizes these symptoms and can prescribe action. Thanks.
upgraded g4 tower (1.4 GHz, 1 Gb memory)

update: changing the batteries on the wireless Logitech mouse slightly improved the situation--but not by much.
update 2: when I swap in an old corded one-button Apple mouse, the problem disappears, which places the blame squarely on the wireless mouse. I should have thought of doing this before posting in this forum, sorry.
Do wireless mice really lose it so abruptly like this? rats, I've gotten accustomed to those programmable buttons and the scroll wheel...

Similar Messages

  • Can I just drag/drop files to the TC to back them up ?

    As it appears to be 'just' a hard drive, can I simply drag/drop any files I want to back up immediately, onto the TC and they will copy across ?
    Will this not affect the backup images ?

    Yes. The Time Capsule is indeed just a disk being served across the network with no special purpose. It is not dedicated to Time Machine (though that's probably what most people buy & use it for and it's certainly marketed for that purpose).
    If you were doing Time Machine backups to a local disk (e.g. Firewire or USB connected external drive) then you'd you'd see a folder for your computers backups with loads of folders inside named for the date & time of that backup. Those are all maintained by Time Machine. You can drop a file anywhere else in the drive (don't drop it inside the folders that Time Machine maintains).
    When using either Time Capsule or the newer Airport Extreme Base Station with the GigE & USB port for printer/disk support, Time Machine works just like a local disk except it encrypts the backup in a sparse image file (basically the same thing as 'FileVault') They key to encrypt/decrypt the data in the spare image is kept in your keychain. You can click your Time Capsule in Finder to mount it and you'll see the sparsebundle file(s). Your Time Machine backups are in the sparebundle files. You can drop & drop files anywhere you want on the Time Machine other than inside the sparsebundles (Time Machine manages them... so you shouldn't mess with those manually unless you know what you're doing.)

  • Can't use drag&drop

    Hello, I'm using MacBook Pro (retina, 15", late 2013, 2,3 GHz Intel core i7) and after using for a while happened smh strange. I can't use drag&drop, so I can't select the object and drag it. What is wrong?

    Hello!
    I wonder, does the issue persist even after a simple restart of OS X?
    If so, please start Disk Utility (it's in your Applications>Utilities folder), click on your harddrive and select [repair disk permissions]

  • How i can do a drag drop between container (grid)?

    I am trying to work out a task with Drag and Drop(WPF ,C#)to include in a demo ,i will explain easy showing an example of code in XAML 
    <Grid x:Name="LayoutRoot">
    <Grid.RowDefinitions>
    <RowDefinition Height="*"/>
    <RowDefinition Height="*"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <Grid x:Name="container1" Grid.Row="0" >
    <Grid Name="grid1" Background="Aqua" Margin="15"></Grid>
    </Grid>
    <Grid x:Name="container2" Grid.Row="1" >
    <Grid Name="grid2" Background="blue" Margin="15"></Grid>
    </Grid>
    <Grid x:Name="container3" Grid.Row="2" >
    <Grid Name="grid3" Background="green" Margin="15"></Grid>
    </Grid>
    </Grid>
    My purpose is when the user drag the
    grid1 in the
    container2 automatically the grid2 will go to place in the
    container1 (basically I want to swap the grids) then this process will be used every time need to drag a grid in a container. with a code that i wrote down i can do a simple drag&drop  i can drag the "grid1"
    to the "container2" but cannot send back automatically the grid2 to container1.
    Kindly i ask if you have any advise or tips to make successful this task.
    Thank you so much for your attention
    Cheers!!!
    *********EDIT*********                                                                  
                                     Using this code as follow i can do the drag&drop but what really i need is the grid "container "is fix and never move just the
    "grid" should move between the "container "                                 
    <StackPanel Name="sp" AllowDrop="True" Background="SkyBlue" PreviewMouseLeftButtonDown="sp_PreviewMouseLeftButtonDown" PreviewMouseLeftButtonUp="sp_PreviewMouseLeftButtonUp" PreviewMouseMove="sp_PreviewMouseMove"
    DragEnter="sp_DragEnter" Drop="sp_Drop">
    <Grid Name="grid1" Background="Aqua" Height="120" Width="500"></Grid>
    <Grid Name="grid2" Background="Blue" Height="120" Width="500"></Grid>
    <Grid Name="grid3" Background="Red" Height="120" Width="500"></Grid>
    </StackPanel>
    private bool _isDown;
    private bool _isDragging;
    private Point _startPoint;
    private UIElement _realDragSource;
    private UIElement _dummyDragSource = new UIElement();
    public MainWindow()
    InitializeComponent();
    private void sp_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    if (e.Source == this.sp)
    else
    _isDown = true;
    _startPoint = e.GetPosition(this.sp);
    private void sp_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
    _isDown = false;
    _isDragging = false;
    _realDragSource.ReleaseMouseCapture();
    private void sp_PreviewMouseMove(object sender, MouseEventArgs e)
    if (_isDown)
    if ((_isDragging == false) && ((Math.Abs(e.GetPosition(this.sp).X - _startPoint.X) > SystemParameters.MinimumHorizontalDragDistance) ||
    (Math.Abs(e.GetPosition(this.sp).Y - _startPoint.Y) > SystemParameters.MinimumVerticalDragDistance)))
    _isDragging = true;
    _realDragSource = e.Source as UIElement;
    _realDragSource.CaptureMouse();
    DragDrop.DoDragDrop(_dummyDragSource, new DataObject("UIElement", e.Source, true), DragDropEffects.Move);
    private void sp_DragEnter(object sender, DragEventArgs e)
    if (e.Data.GetDataPresent("UIElement"))
    e.Effects = DragDropEffects.Move;
    private void sp_Drop(object sender, DragEventArgs e)
    if (e.Data.GetDataPresent("UIElement"))
    UIElement droptarget = e.Source as UIElement;
    int droptargetIndex=-1, i =0;
    foreach (UIElement element in this.sp.Children)
    if (element.Equals(droptarget))
    droptargetIndex = i;
    break;
    i++;
    if (droptargetIndex != -1)
    this.sp.Children.Remove(_realDragSource);
    this.sp.Children.Insert(droptargetIndex, _realDragSource);
    _isDown = false;
    _isDragging = false;
    _realDragSource.ReleaseMouseCapture();
    Thanks :)

    Hello Jonny,
    Currently I do not have a sample and I have reviewed this post and find another way which seems more reasonable. Have you cosidered use a ListView instead of common grid. It seems we can do what you want with two common grid however we need to hardcoded
    all the things.
    If we use ListView, for example, you can see this thread:
    http://stackoverflow.com/questions/20573063/creating-icon-view-mode-for-listview-wpf
    and this thread:
    http://stackoverflow.com/questions/9443695/how-do-i-drag-drop-items-in-the-same-listview
    We can drag and drop items instead of grid, which will make this programming much easier than hard code to switch your control's location.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    Dear Barry Wang thank you so much for your kind support ,just open me a way to do it ,you can see in this post https://social.msdn.microsoft.com/Forums/vstudio/en-US/55873851-e86c-4a20-9b00-de3419054ba8/get-stuck-to-dragdrop-in-this-case?forum=wpf .
    Wish you a Happy New Year .
    Sincerley

  • Can't click drag within widgets in Dashboard

    Not sure what caused it, but suddenly I can't click-drag WITHIN a dashboard widget. For example, if I click and hold the pulldown menu in the Dictionary to change to thesaurus, the pull-down menu won't activate. It only activates if I click and release to bring it up. And I can't select text within a text field. If I click and drag over a word to select it, the whole widget will move.
    Same issue as this unresolved thread-- http://discussions.apple.com/thread.jspa?messageID=11847234&#11847234
    It occurs even if I log out/in as a different user. Sure, there are workarounds, but I'd like to fix this behavior. Anyone got any ideas?

    I'm in the same boat - is there a solution to this?

  • Why can't I Drag & Drop a link from my address bar to my Bookmarks Toolbar in 4.0? I have the toolbar activated, but I can't do this. I was able to do it no problem with 3.6.

    Drag & Drop for bookmarking a link from Address bar to Bookmarks Toolbar is not working in 4.0. Was working in 3.6, then I upgraded to 4.0 and everything got screwed up. How can I fix this?

    I ditched 4.0 and went back to 3.6.17 but I can't drag and drop with it either. The Favicom idea didn't work for me either. Once in a great while it will work, but usually that ends up screwing up my bookmarks and everything being re-arranged. How could something so simple and basic NOT WORK anymore?

  • Why can IPhone not drag/drop BUT Ipod Touch can???!!!

    Hi all,
    Why can I not drag and drop files within Itunes to my Iphone (synch only)
    Whereas on the inferior IPod touch I can !!1 Huh?????
    SvK
    Message was edited by: Steven von Kampen

    BigT_NYCOM wrote:> Actually, from my understanding, iPods can sync contacts and calendars. At least my old Video iPod has all my contacts and calendar in it.
    Yes they can, you are correct. I should have maybe said that in my post. I was merely trying to say that I believe they want to keep the iPhone more organized. I got out of dragging and dropping to my iPod after I created my first playlist. Makes things a lot eaiser just to sync a list.

  • HT1267 i've got about 2500 songs on my iphone, i have replaced my computer & lost my library-question is why can't i drag/drop new downloaded music to my iphone without 'syncing' & losing my 2500 songs from the iphone?

    I've got about 2500 songs on my iphone, i have recently replaced my computer because the old one crashed, so i lost all the songs in the itunes library. My question is, it seems that now i am unable to drag/drop new downloaded songs without syncing my iphone & losing my 2500 songs from the phone?

    You cannot. Iphone will sync/manually manage music with one and only one computer at a time.  Syncing/manually managing with another will erase the current content from the iphone.
    It has always been very basic to always maintain a backup copy of your computer.  Use your backup copy to put everything back.

  • Why can't I drag & drop photos to my email anymore?

    The old IPhoto let me just drop and drag a photo onto the bottom part of my e-mail screen (gmail) and it would -boom- just upload as an attachment.  I didn't have to open up the attachments folder finder and waste time.  I updated my MacBook the other day and now with the new Photos, this function is no longer possible.  Why?  Do I have to change a setting or something?
    Thanks

    Simply use the Share feature of Photos
    Use Mail to share photos
    You can use Mail to email photos directly from Photos. When you use Mail to send photos in an email, Photos sends it from the first account listed in your Mail preferences. If you have other email accounts set up in Mail preferences, you can select which email account to send the email from when you send it.
    Tip: If you have many files or large files to send, you can use Mail Drop to send them. You must have an iCloud account to use Mail Drop. You can use Mail Drop to send attachments up to 5 GB in size right from Mail on your Mac, or from icloud.com/mail on your Mac or PC. All file types are supported and attachments don’t count against your iCloud storage.
    Select the photos you want to send.You can send photos from your photo library or an album, but not from a slideshow or a project (such as a book, card, or calendar).
    Click the Share button in the toolbar and choose Mail.Mail opens a mail message with your photos attached.
    Type the recipient’s email address in the To field, then type a subject line in the Subject field.
    Type a message if you want, then click Send.
    LN

  • Can I freely drag & drop clips in iMovie's timeline?

    I'm trying to make a vid of clips playing along with the lyrics of a song. It'd be easier if I could drag the clips wherever I want, but they just get stuck in the position they're dropped in.

    Do you mean that you are trying to get the clips to change in time with the music?  You can drag them around in any order but iMovie will not leave any spaces between them so you have to adjust their durations to get the timing right.
    Geoff.

  • Can't click on drop-down search items

    I have iTunes 11.1.4.62 on an HP Pavilion DV7 running Windows 7 Home Edition 64 bit.  iTunes used to work fine until a few updates ago.  Whenever I search for something, lets say a song in my iTunes music library.  The search results will drop-down, but nothing happens when I click on them.  All I can do is hit enter to bring up what i'm looking for in the song list.  I have discovered that if I run iTunes with administrator priveleges it will allow me to click on the search results.  But it is tiring and annoying to have to do this every time I open iTunes.  How do I fix this so it works all the time?

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Problem: InDesign CC, I can't click any drop down menus or click in fields

    Just installed ans updated InDesign CC on win7 64x. In the dialog boxes. if I want to click with the mouse say on a drop down menu to change point to inches. Nothing happens. Also if I try to click into a field to type a value. nothing. Same for up or down arrows next to value fields.completely frozen when it comes to mouse clicks.
    I can use the tab keys to jump around and input values. But this is a deal killer for productivity. This problem is also on the tool bar if I want to change fonts, size etc.
    Any advice?
    Max

    Hi Bob,
    just i installed a tryout version of AdobeIndesign CC and updated to latest version but the same problem occured as reported from picturerequest.
    Win7 x64 with Font-size 150%, Dell UP2414Q UHD TFT, when i change the text size below 150% the Preferences pages etc.... are clickable, if not
    i only can use tab-key to change values! And its not an option to change text size to 125% on this TFT, everything is to small!
    Sorry the Adobe HIGHDPI Windows nigtmare......

  • All of a sudden I can no longer drag/drop music onto my iPhone... What happened? :(

    So at some point in the recent past itunes stopped letting me drag music to my iphone.. I don't want to bother syncing my whole library because I have too much music. Why is it making things so difficult all of a sudden? This is REALLY ******* me off.

    roaminggnome is absolutely correct. A easier way of doing this is to click the "Music" tab when the device is connected to iTunes. Within this window, you will be able to select "Sync Music" and then below that select "Selected playlists, artists, albums, and genres." Following this, you will be able to pick and choose which music you want on the device.
    Hope this helps.
    - Greg

  • Can't click-drag my spot healer brush... help?

    Trying to use the spot healer brush, when I try to click and drag, all it does is give me one spot.  It won't drag over an area.  I have not had this problem before.  I'm running CS5 on a Toshiba laptop.  Tried to check for updates, but got "server might be down" error.  I restarted the computer several times, hoping.... no change.  Is there some "dummy key" I hit by mistake?

    In upper left corner of screen click on tool icon and choose reset tool.

  • Double-click/Drag-&-drop Photoshop files opens application but not file or I get a message saying that some files in Application Support are missing and I have to reinstall. (Photoshop CS/CS2/CS3)

    This is most commonly due to installing Photoshop CS/CS2 <i>before</i> doing an archive and install of Mac OS10.3 or OS10.4.<br /><br />One solution is to reinstall Photoshop 7/CS/CS3 after you have installed Mac OS10.3 or OS 10.4.<br /><br />If you have Photoshop 7 and 8(CS), the easiest way to reinstall Photoshop (without disturbing the original installation) is to install to your desktop. After the install is done just trash the Photoshop folder on the desktop.<br />Note: This will only work with Photoshop 7 and 8(CS) but not with 9 (CS2).<br /><br />Photoshop CS2 you must delete the Photoshop CS2 folder. If you have any 3rd party Plugins or presets remove them from the folder before deleting. Just placing the folder in the trash will not work it must be deleted. After reinstalling CS2 you can now put all 3rd party Plugins and presets back in the new folder.<br /><br />---------------------------<br />Another solution courtesy Anne Shelbourne<br /><br />Open your Previous System folder. <br />Find "Adobe Unit Types". <br />Copy it into: <Your current system Hard Drive>/Library/ScriptingAdditions/<br />Then reboot your Mac.<br /><br />---------------------------<br />However, if you happen to be running a non-English version, like Photoshop CS CE or Photoshop CS ME, it appears the missing file does not get installed. You would need to install and delete the international English version first.

    The problem you got into is a known problem after updating to Tiger. It is a small 4K file that gets trashed with the update. It is called the Adobe Unit Types. Both Photoshop and Photoshop Elements need this file to function.
    One way to get it back is to reinstall Photoshop, the other is to add this file again.
    You can get the file from here http://www.dd.se/Tips/bildbehandling/downloads/AdobeUnitTypes.zip
    It is only 3,7 KB big.
    You put the file you download here:
    [hard disk] /Library/ScriptingAdditions. If you don't have a Scripting Additions folder, you create it.
    As you trashed Photoshop, you need to completely deinstall it to be able to reinstall it.

Maybe you are looking for