Single click vs double click in mouseDown and mouseUp

Ask a Question related to Mac Programming, Design and Development.

  1. #1

    Default Single click vs double click in mouseDown and mouseUp

    For a double click mouseDown and mouseUp catch 2 event:
    the first report clickCount value 1 and the second report value 2.
    How to respond to a single click ?
    If clickCount value is 1 the event can be either a single click or
    the first event of a double click.

    The answer for the double click is not the same as the one for the single click.
    For the double click I need just give an answer when clickCount value is 2.
    But how to answer to a single click event ?
    Alain Birtz Guest

  2. Similar Questions and Discussions

    1. double click causes click-event anddoubleClick-event
      I too am interested in a response to this. I see all kinds of information on how to enable the double-click event, but not how to distinguish...
    2. Datagrid double click
      Hi I have 2 datagrids and I am trying to do the following: When the user click on a row in the first grid, it will call the web service to...
    3. How to prevent double click
      Hi, I built a sliding panel which will slide up when clicked and slide down when clicked again. However, I found out if the user double clicks...
    4. Click / Double Click
      Am I doing something wrong? Wrong coding? Wrong handler? I am rying to get the button to fire on clicking..... it WILL work on "double click"... any...
    5. double click button(mc)
      I need a way to double click a movieclip as need to be able to drag & drop it. This is a section of the code i am using outbar1.numero = 1;...
  3. #2

    Default Re: Single click vs double click in mouseDown and mouseUp

    In <abz-0209031819210001@192.168.1.3> Alain Birtz wrote:
    > For a double click mouseDown and mouseUp catch 2 event:
    > the first report clickCount value 1 and the second report value 2.
    > How to respond to a single click ?
    > If clickCount value is 1 the event can be either a single click or
    > the first event of a double click.
    If it's a single click, you won't get another click within the
    doubleclick time interval. m.

    --
    matt neuburg, phd = [email]matt@tidbits.com[/email], [url]http://www.tidbits.com/matt[/url]
    REALbasic: The Definitive Guide! 2nd edition!
    [url]http://www.amazon.com/exec/obidos/ASIN/0596001770/somethingsbymatt[/url]
    Subscribe to TidBITS. It's free and smart.
    matt neuburg Guest

  4. #3

    Default Re: Single click vs double click in mouseDown and mouseUp

    In article <abz-0209031819210001@192.168.1.3>,
    [email]abz@videotron.ca[/email] (Alain Birtz) wrote:
    > For a double click mouseDown and mouseUp catch 2 event:
    > the first report clickCount value 1 and the second report value 2.
    > How to respond to a single click ?
    > If clickCount value is 1 the event can be either a single click or
    > the first event of a double click.
    >
    > The answer for the double click is not the same as the one for the single
    > click.
    > For the double click I need just give an answer when clickCount value is 2.
    > But how to answer to a single click event ?
    Macintosh programs always execute the single click handler on the first
    click of a double-click. It would make a program unresponsive to wait.
    If you can't, you need to rethink your user interface.
    David Phillip Oster Guest

  5. #4

    Default Re: Single click vs double click in mouseDown and mouseUp

    In article <abz-0209031819210001@192.168.1.3>, [email]abz@videotron.ca[/email] (Alain Birtz)
    wrote:
    > For a double click mouseDown and mouseUp catch 2 event:
    > the first report clickCount value 1 and the second report value 2.
    > How to respond to a single click ?
    > If clickCount value is 1 the event can be either a single click or
    > the first event of a double click.
    >
    > The answer for the double click is not the same as the one for the single
    > click.
    > For the double click I need just give an answer when clickCount value is 2.
    > But how to answer to a single click event ?
    HUman Interface Guidelines require that the behavior of a single click and the
    behavior of the first click of a double click be exactly the same. If you are
    trying to do something other than that, you are doing something wrong. If you
    tell us what you are trying to accomplish, we will probably suggest a better
    approach.

    meeroh

    --
    If this message helped you, consider buying an item
    from my wish list: <http://web.meeroh.org/wishlist>

    Miro Jurisic Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139