• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Unresponsive mouseMoved method
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Unresponsive mouseMoved method


  • Subject: Re: Unresponsive mouseMoved method
  • From: Robert Clair <email@hidden>
  • Date: Thu, 29 Mar 2007 10:24:40 -0400

Try this -

subclass NSWindow for the window with your views and override sendEvent:

- (void)sendEvent:(NSEvent *)theEvent
{
   if ( [theEvent type] == NSMouseMoved )
    {
           //whatever, return afterwards if you don't want
           //anything else to get the mouseMoved
    }
  [super sendEvent: theEvent];
}

...Bob Clair


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Prev by Date: Re: QTMovie to handle NSData of an mp3?
  • Next by Date: Re: Design Pattern
  • Previous by thread: Re: Unresponsive mouseMoved method
  • Next by thread: Design Pattern
  • Index(es):
    • Date
    • Thread