Delay in text click-drag selection in Safari

A very annoying bugginess that has arisen in Safari for me:
Delay of text selection.
I will attempt to click and drag to select text, but depending on how fast I move the mouse, a delay causes the action to miss the first part of the selection, as if the initial downward click of the mouse is delayed. I suspected the mouse first and foremost, as the Mac Pro and it's unreliable front USB ports have caused keyboard/mouse issues in the past for me. However, only Safari seems to have this issue. Copy/Pasting is quite a chore now, as I need to click and hold for a period of time before dragging, to insure I get all I need to select.
Latest OSX patch
Latest Safari version

Nobody having similar issues hmm?

Similar Messages

  • On list view in folders, how do I click drag second group of files?

    Back in Snow Leopard and all previous systems, I was able to on list view in a folder be able to click and drag a set of files to select them, then by pressing command again, click drag on a second group of files I would like to select together and so forth. This was handy as I can select really quick on list view folders and files which I need. Obviously the files are listed alphabetically and I don't need to select them all, only groups of files eg. files which are all pdfs that are randomly spread out based on names, or mp3s which I want to move but not move the folders that are in the same folder. You get my drift.
    Now on Lion, I can only click drag first group of files, and then on second selection by pressing command, I cannot drag anymore files except for the first click of the file I select.
    Is this going to be like this for Lion or did Apple leave this out accidently? Is there a setting I can set back to previous style of group click/drag selection?
    This is a bit annoying as I would like to quickly group select a could of groups in a folder QUICKLY to drag to other folders or to simply trash them all in one go. Now I have to stop and start and it slows down my productivity when I have to clean my files on my computer.
    Thanks for your help.

    I have the same problem.
    I've made another post...
    Hoping this is a Bug and not a new feature...

  • Drag select in text fields causes scrolling

    On many sites in safari under Yosemite, I click drag text in a text field, and get scrolled back to the top of the page. Happens in blogger and many other platforms

    On many sites in safari under Yosemite, I click drag text in a text field, and get scrolled back to the top of the page. Happens in blogger and many other platforms

  • How to disable dragging selected text to web search?

    How to disable dragging selected text to web search?

    Hmm, I haven't heard of that before. It's a new tab page with no relation to what you were dragging?
    I wonder whether this might be a feature of one of your extensions. You can review them, and disable/remove any that are nonessential or unrecognized, here:
    orange Firefox button (or Tools menu) > Add-ons > Extensions category
    If you disable extensions, usually a link will appear above at least one of them to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    If that makes no difference, you could test in Firefox's Safe Mode -- that's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • After placing a new text box in my document, typing new text, clicking away, then coming back to edit the text, I am unable to get my cursor to reappear within that text box. I can only select the box itself. I cannot select the text. Where is my cursor?

    After placing a new text box in my document, typing new text, clicking away, then coming back to edit the text, I am unable to get my cursor to reappear within that text box. I can only select the box itself. I cannot select the text. Where is my cursor?

    Even simpler than that.
    Clicking once in a text box selects it.
    Clicking once in a selected text box places the insertion point in the box.
    The clicks do not need to be close enough in time to be read as a double click.
    The same behaviour applies to table cells in Pages and in Numbers.
    Regards,
    Barry

  • Shift+Click And Drag Select

    In demonstration mode I can show how to select a range of
    cells in Excel by dragging with the mouse.
    I can achieve the same outcome by using Shift+Click on the
    start and end cells to select the range, although the viewer would
    not see the Shift key being held down of course.
    I am at a loss to see how to get (and require) a user to do
    the same things in a Trainng or Assessment simulation before being
    able to continue with the next step.
    Can anyone advise please?
    Phil_McC

    Hi again,
    I think I have something that will help you. It's in flash
    though so don't know if you're going to be able to use it.
    Basically it draws a rectangle that follows your mouse and then
    leaves the final rectangle in place if your user hits the target
    area. I must confess to heavily borrowing from the Flash help and
    then tweaking.
    I've just published this as player 7 and tested in Captivate
    2 and it works like a charm.
    This is what you do.
    1 - export the Captivate slide you wish to do the drag select
    on into Flash
    2 - get rid of everything apart from the screen shot of your
    excel. You can add everything else in afterwards.
    3 - put the background on the bottom layer of your stack and
    lock it.
    4 - Create a movie clip for the cell to be dragged out. You
    should be able to draw a rectangle the same size as a cell then F8
    it into a movie clip.
    5 - Create another one that's going to be the target.
    6 - Place these both on the stage in the correct location in
    a layer above your background.
    7 - Copy the code below into the topmost layer (usually
    called actions). You'll need to adjust the start positions and
    final rectangle positions (in the rectangle function and xpos and
    ypos) to what you want.
    8 - test the movie and it works :)
    9 - publish as a player 7 swf.
    10 - Import into the relevant place in Captivate - test and
    play.
    Now the code:
    /*THIS CODE REDRAWS THE RECTANGLE AS THE MOUSE MOVES.
    1 - Creates a function for the final rectangle
    2 - Creates the mouse listener for the drawing
    3 - Draws the rectangle dynamically while mouse pressed
    4 - If drawing ends on the target area then the dynamically
    created rectangle is hidden and the full rectangle is displayed
    5 - If drawing doesn't end on target area, rectangle is
    hidden and the user can try again.
    function rectangle() {
    this.createEmptyMovieClip("rect_mc", 5);
    rect_mc.beginFill(0x333333, 30);
    rect_mc.lineStyle(2, 0x333333, 25);
    rect_mc.moveTo(100, 120); //starting point
    rect_mc.lineTo(400, 120); //top line
    rect_mc.lineTo(400, 120); //right side line
    rect_mc.lineTo(400, 320); //bottom line
    rect_mc.lineTo(100, 320); //left side line.
    rect_mc.endFill();
    var xpos = 100;
    var ypos = 120;
    this.createEmptyMovieClip("new_mc", 5);
    var mouseListener:Object = new Object();
    mouseListener.onMouseDown = function() {
    this.isDrawing = true;
    this.orig_x = xpos;
    this.orig_y = ypos;
    this.curPos_mc = new_mc.createEmptyMovieClip("",
    new_mc.getNextHighestDepth());
    mouseListener.onMouseMove = function() {
    if (this.isDrawing) {
    this.curPos_mc.clear();
    this.curPos_mc.beginFill(0x333333, 30);
    this.curPos_mc.lineStyle(2, 0x333333, 25);
    this.curPos_mc.moveTo(this.orig_x, this.orig_y);
    this.curPos_mc.lineTo(_xmouse, this.orig_y);
    this.curPos_mc.lineTo(_xmouse, _ymouse);
    this.curPos_mc.lineTo(this.orig_x, _ymouse);
    this.curPos_mc.lineTo(this.orig_x, this.orig_y);
    this.curPos_mc.endFill();
    updateAfterEvent();
    mouseListener.onMouseUp = function() {
    this.isDrawing = false;
    this.curPos_mc.hitArea = target_mc;
    if (this.curPos_mc.hitTest(target_mc)) {
    this.curPos_mc._visible = false;
    rectangle();
    } else {
    this.curPos_mc._visible = false;
    Mouse.addListener(mouseListener);
    Let me know if you have any issues or want the .fla or .cp
    file with this.
    Cheers
    JiminiCricket

  • Highlight text and drag over Safari icon to start a search

    A few years back, it was possible in Safari to highlight text and drag and drop it over the Safari icon to instantly start a Google or Yahoo search.  That no longer seems to work.  Now, I'm running Snow Leopard with the newest version of Safari.  Back then, I was probably still on Tiger and whatever the current version of Safari was at the time.
    Does anyone know if it's possible to restore that old feature to drag and drop text of the Safari icon to start a search?

    Nobody knows what I'm talking about?

  • Trackpad gestures to double-click/drag to select whole words?

    Using a mouse in a TextEdit document, I can double-click a word to select it at once. Double-click/drag alters the selection word-at-a-time. Similarly, triple- and quadruple- clicks might have other handy functions.
    What trackpad gestures allow me to do the same word-at-a-time selection?

    D'oh! There are mouse buttons in the lower left and right corners of the Magic Pad! So to word-at-a-time select (with the right hand), use the thumb to click-then-hold the lower left mouse button, and the index finger to adjust the selection.

  • When I type I cannot add text when I select the text area and double click. Why?

    When I type I cannot add text when I select the text area and double click. Why?

    Premiere Elements 11  trial version for macMac computer photos uploaded to the timeline just finetrying to make a new title, streaming or in a framedouble clicked on the text in the box and nothing shows up when I type on my keyboard. I can delete the words that are there but not type in new ones. I selected the type and size, etc.
    Thanks if you can figure it out. I gave up!
    I may just un-install it all together if I can't get to work.Joanne
    Date: Thu, 9 May 2013 17:59:08 -0700
    From: [email protected]
    To: [email protected]
    Subject: When I type I cannot add text when I select the text area and double click. Why?
        Re: When I type I cannot add text when I select the text area and double click. Why?
        created by A.T. Romano in Premiere Elements - View the full discussion
    Joanne Murray J2 What version of Premiere Elements are you using and on what operating system (including 32 or 64 bit) is your Premiere Elements installed? Forgive the questions if you have been there and done that, but I do not want to take anything for granted that might hinder a speedy resolution to your issue. Are you opening an already created title that is sitting on the Timeline in order to edit it in the Titler or are you trying to create a new Title (Default Text or other)? Do you know how to work with the Selection Tool and Type Tool in the Titler? Once I know what version of Premiere Elements that you are using, I will give you specific how to details. Thanks. ATR
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5307494#5307494
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5307494#5307494
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5307494#5307494. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Premiere Elements by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Help - JEditorPane drag selected text behavior/problem

    Hi All,
    I'm working at adding new functionality to the JEditorPane. Everything was going ok, but I noticed this interesting behavior that hopefully there is a solution to.
    When you select some text in the JEditorPane with the mouse and then drag the selected text to another location, the text moves just fine. However, depeding on when you drag the text, something interesting happens.
    Here is the senerio. While the text is already selected you noticed the cursor blinking.
    (1) If you drag the selected text while the blinking cursor IS visible, the cursor will continue to blink after you drag the text to its destination.
    (2) If you drag the selected text while the blinking cursor IS NOT visible, the cursor will be invisible after you drag the text to its destination.
    So (2) is really the problem. The only way I've been able to get the cursor to start blinking again is to issue a cut, copy or paste method from the JEditorPane object.
    Has anyone else found this problem and maybe a solution to it. I've disabled all the extra stuff I extended on the JEditorPane class, but it didn't seem to make a difference.
    Thanks.
    Justin Circelli

    There are several approaches. You can add FocusListener to the drop target or drag source and put your code in focusGained() or focusLost() accordingly.
    Another way is to return focus to the drag source if DnD failed as you tried. First check whether mouseReleased(0 is invoked. If it's invoked try to put your code into SwingUtilities.invokeLater()
    regards
    Stas

  • I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes.   I hav

    I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes. I have viewed some videos and read numerous articles but haven't found the one to help me. Please point me in the best direction. Thank you Vincent TC

    For the sake of clarity and to save people time, Todd is asking about the behaviour of the Patch tool when using it to repair the area next to the young lad's head.  Todd gets a blurred dark tone pretty much regardless of the options he uses.
    IMO that's what I would expect to happen because of the close proximity of the other image elements i.e. the lad's neck and the strong lines of his shirt.  I would not choose to use the Patch tool in this situation.  Content Aware Fill makes a better stab at it. 

  • InDesign CS5 triple click to select text doesn't work

    Hey guys
    I'm really frustrated because I've just upgraded to CS5 and I have really run out of ideas. When I was using CS4, when I triple click on a text frame with any tool, it will activate the text tool and select the whole word I triple clicked.
    What has happened to this feature in CS5? I have checked the preference and the triple click option is checked. So I cannot see why isn't it working for me. I'm really frustrated because it just means I have to change my way of doing things which it has developed into a habit after 4 years of using InDesign.
    I really appreciate some help here. I want that feature back. I don't wanna go looking for another solution and learn another habit. Don't have the time.
    Thanks guys.
    PS. If I sound really rude that;'s because I really have no time... thanks.

    I'm not sure what you're meaning by the background image highlighting. But you could put it on its own layer and hide the layer. Or you could lock the object (Object > Lock).
    But I would first try a couple ways of dealing with problems. Restore your InDesign preferences: http://forums.adobe.com/thread/526990
    You could also have a corrupted file. You could try this: http://forums.adobe.com/thread/526991

  • After mistakenly clicking a link, my safari does not open automatically and unexpected webs open up.

    I am using MacBook Air with Yosemite OS. After mistakenly clicking a link, my safari does not open automatically and unexpected webs open up. Could you please give me suggestions on how to fix this problem? Thank you

    That's a bit vague, but you may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

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

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

Maybe you are looking for

  • I can no longer open firefox. I get a message that it is already open but when I try to force quit the app it is not there.

    I am running IMacs with an OS10.6x operating system. This problem has occurred on several of my machines now. I can still open firefox from alternate profiles on the same machine, but the student profile will give me the message that it is already op

  • Problem with tables -- need help!

    I am having problems with table formatting, when using Preformatted text. The tables look fine in the WYSIWYG editor, but have lots of extra space above and below the text when looking at the output files. I will attach the code from one of the HTML

  • Propagation case sensitive?

    I am getting NodeExistsExceptions when using the propagation tools to import names of nodes that are only differentiated by case. For example: (same directory) -helloWorld (node) -HelloWorld (folder) Other than changing naming conventions, anyone kno

  • T61p 200gb at 7200rpm buffer size and real world performance?

        Hi, I wanted to confirm what the buffer size on the 200gb 7200 option of the T61p had... there seems to be conflicting information regarding this model. I'd also appreciate any information regarding the real world performance of this particular d

  • Unable to read e-mails online

    I can open my account with movistar.es, but my e-mails will not download. My account works perfectly with Explorer.