Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7733757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:04:59+00:00 2026-06-01T07:04:59+00:00

I am trying to be able to detect when a mouse is held down

  • 0

I am trying to be able to detect when a mouse is held down instead of clicked. This is what I have, but instead of a click count I want to be able to detect the mouse being held down.

-(void)mouseDown:(NSEvent *)event;
{
    //instead of clickCount I want my if statement to be 
    // if the mouse is being held down.
    if ([event clickCount] < 1) 
    {

    }
    else if ([event clickCount] > 1)
    {

    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T07:05:00+00:00Added an answer on June 1, 2026 at 7:05 am

    Presumably you want to detect whether the mouse is being held down for a certain period of time. This is pretty straightforward; it just requires a timer.

    In your mouseDown:, you start a timer which will fire after your chosen period. You need to stick this into an ivar, because you will also refer to it in mouseUp:

    - (void)mouseDown: (NSEvent *)theEvent {
        mouseTimer = [NSTimer scheduledTimerWithTimeInterval:mouseHeldDelay
                                                      target:self
                                                    selector:@selector(mouseWasHeld:)
                                                    userInfo:theEvent
                                                     repeats:NO];
    }
    

    In mouseUp:, destroy the timer:

    - (void)mouseUp: (NSEvent *)theEvent {
        [mouseTimer invalidate];
        mouseTimer = nil;
    }
    

    If the timer fires, then you know that the mouse button has been held down for your specified period of time, and you can take whatever action you like:

    - (void)mouseWasHeld: (NSTimer *)tim {
        NSEvent * mouseDownEvent = [tim userInfo];
        mouseTimer = nil;
        // etc.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to be able to have a global exception capture where I can
Im trying to run a shell with cakephp but I'm not able to do
I'm trying to create a webapplication where I want to be able to plug-in
I have been trying to detect the browser language preference using JavaScript. If I
I'm trying to detect an incoming call in the Lync client . This is
I'm trying to delete whole linked list but getting segmentation fault and not able
I've been trying to figure out how to detect this for months without any
I am trying to detect .net framework 2.0 service pack 2. But it seems
So, I have a custom UIView inside a UIScrollView. I am able to detect
I'm trying to be able to place the error message when using jQuery validation

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.