Ask a Question related to Mac Programming, Design and Development.
-
Alain Birtz #1
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
-
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... -
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... -
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... -
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... -
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;... -
matt neuburg #2
Re: Single click vs double click in mouseDown and mouseUp
In <abz-0209031819210001@192.168.1.3> Alain Birtz wrote:
If it's a single click, you won't get another click within the> 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.
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
-
David Phillip Oster #3
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:
Macintosh programs always execute the single click handler on the first> 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 ?
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
-
Miro Jurisic #4
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:
HUman Interface Guidelines require that the behavior of a single click and the> 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 ?
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



Reply With Quote

