Double-Clicking fails to select text

I'm using a mighty mouse (not wireless) with my MacBook Pro. I just purchased it used ... and so I don't know if this ever worked. The standard method of selecting a word of text is to place the I-bar anywhere in the word and double click. Mine doesn't select. A single click does place the I-bar, and I can click and drag ... but I really miss the convenience of double-click to select a whole word. Is there some way to enable this?

what you are saying is that, no matter how fast you double click in a word (for example here in the forum page) you can't get it to select the fill word is that it?
If it is, that is normal, all you need to do is go to the Mouse settings and change the Double Click Speed to a Slower speed (I have in the 4th point counting from the fastest)
System preferences > Keyboard & Mouse > Mouse
Hope it helps

Similar Messages

  • Double clicking brings up selection box rather than highlighting words

    This is a bit of a trivial problem but it's making my editing quite difficult. I'm using Acrobat X 10, with Windows 7.
    Normally when I double click on some text, the word that I am double clicking on will become highlighted. This continues to be the case except for in one specific pdf document: now double clicking opens a selection box rather than highlighting text. If I single click I can highlight whatever text I want, but double clicking no longer highlight a particular word. This is very incumbersome for my annotating/highlighting technique. It only happens with this one pdf, any other pdf and the selection tool is back to normal.
    Any idea why this is happening for this one particular pdf, but none of the others, or any way that I can make it highlight words via double clicking again?
    Edit: On further inspection, the problem seems to be that for this particular document, acrobat reader cannot detect specifc words, only individual characters. When I highlight a sentence, normally the text highlighted would naturally jump to the end of the word, but here it will only start/stop where I begin and end dragging the cursor. I have used the Recognise Text tool, but this did not fix the problem as it said it had already recognised the text throughout the document.             

    Can you use the "Prompt" section of the Property Palette instead and leave Label as null. Prompts can be aligned to the left, but, without trying it in Forms 4.5, am unsure about your highlight issue.

  • Why does double-click no longer select a whole word?

    I am on the beta update channel and currently using FF 8.0, latest update as of the moment of this posting.
    I am not sure when it happened - I think since I started using 8.0 - but double-click no longer selects a whole word. It's the same effect as a single click - simply positions the insertion point where the mouse cursor is located.
    This is very aggravating. I thought it may be a bug in the new version (I already posted it to Bugzilla, but hasn't been confirmed yet), Unfortunately, I don't have the old version to cross-check (can I install both versions on one machine?)
    Or is it some configuration issue? Or conflict with something else? I've searched and not (yet) found any other complaints about this issue from other users.
    Note that I do not have the problem in any other app nor in other browsers that I have installed (e.g., IE, Chrome, Opera, Safari). In all of those, double-click on a word selects the whole word.
    Thanks in advance for any suggestions or guidance.
    Best,
    Yosh

    OK - I found the culprit. It seems that the Answers.com '''1-Click Answers''' utility had changed its behavior. In its Options on the Activation tab is an option to activate it when using double-click in a browser. I don't remember turning it on, but it ''was'' on. When I turned that option off, the problem went away. Apparently it is not compatible with FF8, since double-click was apparently intercepted, but 1-Click Answers was not activated - the double-click simply became a no-op.
    Now that I've turned off that option, double-click in FF8 is back to the way it's supposed to work for quickly selecting a whole word or sentence.
    If anyone else encounters this problem, I hope this information will help to resolve it.

  • Double-click to enter a text frame - selecting text unresponsive

    Ok.
    So frustrating...I haven't been able to find a solution to this anywhere online.
    Let's say I've got an InDesign document open, and have my selection tool (V).
    I double click on a text frame (that is full of text), see that there is now a cursor inserted in the text frame, so I go to swipe or double-click to select/highlight some text, and NOTHING HAPPENS (it is unresponsive).
    I wait a second, and then I can select text.
    But this was not an issue in CS6 on the Mac I used to use for almost 2 years. 
    I could double click on a text frame and quickly swipe text to select, it was very fast.  This second-long delay in responsiveness trips me up every time, disrupts my flow and is really, really annoying when I am selecting and editing different text boxes hundreds of times all day long.  I am using ID CC on a Windows machine now, but the CPU is super fast (16 GB ram, i7 processor) and should not be having any lag issues in InDesign. 
    Does anyone else have this problem?  Is there something in the InDesign preferences that I can change, or is this a bug?

    de_fault, please send a complaint to Adobe otherwise they won't fix it:
    Adobe - Feature Request/Bug Report Form
    Problem description: When switching from the Selection tool to the Text tool (by double-clicking in a text box) there is a 1-2 second delay before you can select text.
    Steps to reproduce bug:
    1. Make a text box and fill with text
    2. Select the Selection tool (V)
    3. Double-click in the text box so that you see a cursor
    4. Immediately try to select text
    Results:  You have to wait 1-2 seconds before you can select text.
    Expected results:  There should not be a delay.  There was no delay in previous versions.

  • How to handle double click event in a text control

    Hi,
       Will u please send me information on handling double click events inside text control and also about locking and unlocking of DB tables for updation.
    Regards,
    Praba.

    Hi Prabhavathi,
    Here is how you handle double click events in Textedit control.
    1)Create a custom control in screen (say TEXT_CONTROL)
    2)In main program,
    a) Declarations:
    data: obj type ref to cl_gui_custiom_control.
          text type ref to cl_gui_textedit.
    b) Create the instance of custom container
    c) Create the instance of textedit control.
    3)Now to handle double click events , create a local class as follows.
    class shail_event definition.
    public section.
    methods:
    handle_doubleclick for event dblclick of cl_gui_textedit .
    endclass.
    class shail_event implementation.
    method handle_doubleclick .
    here do the coding for handling the double click.
    endmethod.
    endclass.
    4) Create an instance of the handler class(ie.ZSHAIL_EVENT).Let it be named hand.
    5) Define varibles for event.
    DATA: i_events TYPE cntl_simple_events,
          wa_events TYPE cntl_simple_event.
    SET HANDLER hand->handle_doubleclick for text.
    wa_events-eventid = cl_gui_textedit=>event_double_click.
    wa_events-appl_event = 'X'. "This is an application event
    APPEND wa_events TO i_events.
    6)
        CALL METHOD texte->set_registered_events
          EXPORTING
            events                    = i_events
          EXCEPTIONS
            cntl_error                = 1
            cntl_system_error         = 2
            illegal_event_combination = 3
            OTHERS                    = 4.
        IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    These are the basic steps needed for handling events in Textedit control.You can go to SE24 and type CL_GUI_TEXTEDIT to find the associated events of the class.
    If you want the program, kindly send your mail-id so that I can mail it to you.
    Regards,
    Sylendra.

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

  • Firefox will not run - double click on icon, select icon and run/open, opening via start menu are all dead

    Problem started yesterday (9/28). While in Firefox, bookmarks stopped working. Closed out FF and tried to reopen the program, and nothing causes FF to launch. Tried double clicking on the desktop icon, single click on the bottom status bar (on XP), right click on icon to open or run, trying via Start -> All Programs -> Mozilla and neither regular or safe mode would launch. Only thing that seems to fix the problem is a full restart of the computer. Tried downloading the newest version via Chrome. When I clicked to run the install, kept getting a message to close all FF windows, even though there were no FF windows open.

    Check that you do not run Firefox as Administrator.
    Right-click the Firefox desktop shortcut and choose "Properties".<br />
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.
    * Privilege Level: "Run this program as Administrator" should not be selected
    * "Run this program in compatibility mode for:" should not be selected
    Also check the Properties of the firefox.exe program in the Firefox program directory.
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    * https://support.mozilla.com/kb/Server+not+found
    * https://support.mozilla.com/kb/Firewalls

  • My trackpad is faulty- it clicks on things I didn't even click on and acts as though I double clicked it (ie. highlighting text). Help!

    I need help. Do I get it repaired or is there is any way I can fix it myself?

    Jumpy Trackpad
    http://support.apple.com/kb/TS1449
    Go step by step and test.
    1. Restart
    2. Clean the trackpad with moist not wet microfiber cloth.
           System Preferences > Trackpad > Point & Click
       Try turning off three finger dragging and then turning it on after  testing.
       Is there any Bluetooth device nearby with failing batteries?
    3. Reset PRAM: http://support.apple.com/kb/ph14222
    4. Reset SMC.     http://support.apple.com/kb/HT3964
       Choose the method for:
       "Resetting SMC on portables with a battery you should not remove on your own".
         If this continues, you may have to take the computer to the Apple store to have it checked out.
    Best.

  • Selection Texts, Text Symbols

    Hi,
    I would like to set the text symbol depends on the sy-langu in my report dynamically. How can I do it?
    Another similiar question is that I would like to set the selection texts dictionary Flag dynamically in my report ? How can i implement this?
    Regards,
    Irian

    hi,
    SELECTION-SCREEN COMMENT [/][pos](len)
                               {text|{[text] FOR FIELD sel}}
                               [VISIBLE LENGTH vlen]
                               [MODIF ID modid]
                               [ldb_additions].
    in this situation it is used,
    text-001.
    double click on this maitain text for that.

  • Double Click event on table

    I need to allow selection of table row on double click - I implemented this functionality as suggested in article "http://technology.amis.nl/blog/3845/adf-11g-richfaces-handling-the-client-side-double-click-to-invoke-a-server-side-operation". I noticed the double click works fine if I click on any part of the row that is empty (without text). If i double click on the text that is displayed on the column cell - it just highlights the text and does not invoke Java script method for handling double-click event. I have set table 'rowselection' to 'single'. I am using Jdeveloper 11.1.5 and Firefox (3.1.16) browser.
    Any one else has experienced this issue, is there any solution for this.

    Thanks Timo for your response. I am seeing this odd behavior when using pageflowscope managed bean.
    1). I have a page (part of unbounded taskflow) that has commandlink which invokes a task flow as dialog (inline-popup):
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1" title="testw">
    <af:form id="f1">
    <af:panelGroupLayout id="pgl1">
    <af:commandLink text="Link"
    id="cl1" useWindow="true"
    immediate="true"
    windowHeight="500" windowWidth="600"
    windowEmbedStyle="inlineDocument"
    inlineStyle="text-align:left;"
    action="testflow"/>
    </af:panelGroupLayout>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    2). The inline popup has a table where I am using double click event on a row.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1" clientComponent="true">
    <af:table value="#{TestdblClick.list}" var="row"
    rowBandingInterval="0" id="t1" rowSelection="single"
    clientComponent="true" binding="#{TestdblClick.contactTable}"
    emptyText="no data" columnStretching="last">
    <af:clientListener method="dblkfunction" type="dblClick"/>
    <af:serverListener type="doubleClickOnRow"
    method="#{TestdblClick.doubleClick}"/>
    <af:clientListener method="singlelkfunction" type="selection"/>
    <af:serverListener type="singleClickOnRow"
    method="#{TestdblClick.singleClick}"/>
    <af:column sortable="false" headerText="Col1" align="start" id="c3"
    rowHeader="unstyled">
    <af:outputText value="#{row.col1}" id="ot1"/>
    </af:column>
    <af:column sortable="false" headerText="Col2" align="start" id="c2">
    <af:outputText value="#{row.col2}" id="ot3"/>
    </af:column>
    <af:column sortable="false" headerText="Col3" align="start" id="c1">
    <af:outputText value="#{row.col3}" id="ot2"/>
    </af:column>
    </af:table>
    </af:form>
    <f:facet name="metaContainer">
    <af:resource type="javascript">
    function dblkfunction(event) {
    var source = event.getSource();
    AdfCustomEvent.queue(source, "doubleClickOnRow",
    },false);
    function singlelkfunction(event) {
    var source = event.getSource();
    AdfCustomEvent.queue(source, "singleClickOnRow",
    false);
    </af:resource>
    </f:facet>
    </af:document>
    </f:view>
    </jsp:root>
    TestdblClick.java
    ====================
    public class TestdblClick {
    public TestdblClick() {
    private RichTable contactTable;
    private List<Testdata2> list = null;
    public List<Testdata2> getList() {
    this.list = new Vector<Testdata2>();
    Testdata2 t1 = new Testdata2 ("joe", "demaggio", "contact");
    Testdata2 t2 = new Testdata2 ("joe2", "demaggio2", "contact");
    Testdata2 t3 = new Testdata2 ("joe3", "demaggio3", "contact");
    list.add(t1);
    list.add(t2);
    list.add(t3);
    return list;
    public void setList(List<Testdata2> list) {
    this.list = list;
    public void singleClick(ClientEvent clientEvent)
    System.out.println("------single click------");
    public void doubleClick(ClientEvent clientEvent)
    System.out.println("------doubleclick------");
    public void setContactTable(RichTable contactTable) {
    this.contactTable = contactTable;
    public RichTable getContactTable() {
    return contactTable;
    If I make "TestdblClick" managed bean as request scope to handle double-click event it works fine, however if I make "TestdblClick" managed bean as pageflow scope (task flow) it does not work when double click is on a text within the table row. I am not sure why pageflowscope should impact the double-click behavior.

  • Purchase Order - Trap Double-Click

    Hi , I'm Cristian , this my first post , i need to do something that's going me mad.
    I need to trap the double-click event in a text field (ekko-sumbi , exactly) in the header of the purchase order , i searched for exits (MM06E005,M06E0005,LMEKO001,etc) , but no luck , nothing on double click , also tried badis ( ME_GUI_PO_CUST , ME_PO_SC_SRV , ME_HOLD_PO , ME_PROCESS_PO_CUST) , no luck either.
    Any help please ???
    Thank you very much !

    Hi Cristian,
    If you look at the MM06E005 enhancement, it allows to include some custom fields in the subscreen. Now let us assume that we will not create any new fields, but since we create the subscreen, we can always insert code in the PAI logic of the subscreen. In there you will write code for the sy-ucomm = 'MESELECT'(for double-click). So you will do a call transaction ME49 and return.
    Please go through the documentation for the transaction.
    Since, you are new to the forum, let me introduce you to the forum rewarding system. You can rate any of the responses to your question and assign points based on their usefulness. You will select 'Solved Problem' or 'Solved myself', once your problem is resolved.
    Try this and let me know how it goes.
    Srinivas

  • Preventing Double Click on Link in List

    Hello folks,
    APEX 4.1
    I'm supporting an application right now (which I didn't build I should add), which contains a navigation list entry which triggers an insert into a table (via a before header process fired by a request value which is set when the link is clicked.
    I've had a look through the forum's search function for references to "links", "clicks", "double clicks" and "Disabled" and came up with lots of suggestions regarding disabling a button and links in reports, but nothing for links from navigation lists:
    e.g. {thread:id=9405085}
    Note that some of the example suggest using the javascript pseudo-protocol. I want to avoid that method at all costs.
    Rather than verbosely explain the problem, I've set up a demo page on apex.oracle.com to demonstrate it:
    Workspace: JC_DEMO
    Username: DEMO_USER
    password: demo
    the pages in question are 9999 and 10000.
    (p.s. I knocked this example up as fast as I could - the app hasn't been done to my usual standards! :-) )

    Okay I've solved this, or at least I've provided a solution to this particular problem on my "real" app - will amend the test case accordingly in due course but thought I'd share it on this thread anyway.
    1) List Template: I took a copy of the existing List template and edited it. Under the "Sub List Entry" section, I amended both the "Sub List Template Current" and "Sub List Template Noncurrent" entries to the following:
    <li><a class="#A02#" href="#LINK#">#TEXT#</a></li>In other words, I added a reference to "User Attribute No.2" (#A02#). The reason I used A02 is due to having already used A01 already for something else. Don't be too concerned about this.
    2) List: I amended the "List Template" of my list to point at the amended template from step 1. Note also that my list is referenced in a list region on page Zero.
    3) List Entry: I amended the list entry I wanted to disable double-clicks, Adding the following text to the 2nd entry in the "User Defined Attributes" section:
    single_clickFrom step 1, you should note that this has the effect of adding the class "single_click" to the list entry. "single_click" is not referenced in any of my CSSs incidentally.
    4) Page Ready Javascript: On Page Zero, I have a "Before Footer" region called "Page Ready Javascript", into which I put javascript that I want executed on page ready. The basic template for this region is as follows:
    <script>
       try{
          $(function() {
          /* code you want to execute */
       catch(e){
         /* error catching code */
    </script>Within the page ready function (starting with '$'), I have the following code:
    $(".single_click").click( function(){
        window.location = $(this).attr('href');
        $(this).unbind('click'); /* do this because .click adds to the existing click event */
        $(this).click( function(){
           return false;
        return false;
      });Note that I'm using the "single_click" class as my jquery selector. The result of all of this is that, if you click on the relevant link in my navigation list, no matter how many times you do, it will only request the page once.
    Already I can see a few things I'm not happy about but its at least a reasonable starting point. Comments/critiques welcome.

  • Detecting double-click in the action of a JButton

    I have a similar problem to the poster of http://forum.java.sun.com/thread.jsp?forum=52&thread=93004 and I'm wondering if anyone has a better solution.
    A fuller description of my problem.
    My JButtons represents certain pallette items. Clicking a pallete item puts the button in a selected state (changes its border to show it's selected). The action on this button sets a mode state on the canvas to indicate what was selected. I then click on a canvas workspace to place an instance of that item onto the canvas based on the current mode.
    The selected JButton then pops up and the user needs to select a new pallette icon.
    What I want as an option so that if a pallette button is double-clicked it remains selected even after the item has been placed on the canvas allowing the user to place several copies around the canvas before selecting another item.
    I'd like if possible to determine this from the buttons action rather than registering a listener to the button because parts of the framework I am using pass just the actions around.
    I could do this by looking at the time between actions being triggered but this seems like a messy solution (can I pickup the operating system settings for double-click delay).
    Any other ideas?

    thebobster,
    This doesn't answer your original question, so if you're determined to use d-clicks on a JButton, don't bother reading further.
    I've always found double-clicking on a JButton non-intuitive, not to mention messy to implement. I prefer CTRL-click, etc, to indicate a sticky click.
    Perhaps you could use an image to indicate your palette button: you'll need just 2 images--up-state and down-state--and d-clicks will be easy to implement.
    --A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • ITunes 2 double-clicks to play a song...

    Since I've downloaded recent version of iTunes (10), I have to double click a song twice before it will play. One double click will only select the song, it won't start playing. It's very annoying, is this just a change to iTunes that I'm stuck with or is there some setting that can be changed?

    Sounds like you have somehow clicked on the *Date Played* column to sort everything.
    Try clicking on the Album column header in itunes.
    I don't know what's up with the ipod doing that.

  • Quick - Adobe Genius Needed: Footage and stills are black when double clicked - audio but no image ? What the ... ?

    I am doing the training video as this is the first time i have used premiere pro cc or any version of it at all.  I have downloaded the footage and stills as shown in the video but when i go to double click the beach footage it comes up as black - i can hear the waves but the video isn't playing. Same with the stills, they do not show up when double clicked either, they are just black. Dont know what to do.  Your help would be greatly appreciated.
    Cheers

    Without a screen shot, it's hard to know why the footage/stills are black. Double-clicking the asset opens it in the Source monitor, as opposed to the Project monitor, which could be black if the playhead is not set to a portion of the timeline that shows a movie clip or still. Perhaps your Source monitor is closed or hidden for some reason. After double-clicking the asset, select Window > Source Monitor in the main menu. You should be able to select the specific asset (e.g., Shot_01.mp4) and then see it on the screen. Make sure you also select Window > Workspace > Editing so that your panel layout shows the various panels properly.
    HTH,
    Stefan

Maybe you are looking for