NSBundle from an URL.

2009-09-03 Thread Erik Österlund
Hello. I just wanted to check out NSBundle's + bundleFromURL. I looked in the documentation and said nothing about only some protocols working, so I thought I could load a bundle via HTTP which would be awesome, but that seemed to fail. Is this a bug, or am I being stupid? Here is my code

Re: Tracking rects, tracking areas and events

2009-04-21 Thread Erik Österlund
Apr 21, 2009 kl. 1:40 AM skrev Quincey Morris: It's hard to say in general. NSTrackingArea is fairly easy to get started with, so I'd suggest you just experiment to find the best approach for you. Thanks for your help! I'll just mix around a little and see what happens. -Fisk

Re: Tracking rects, tracking areas and events

2009-04-20 Thread Erik Österlund
Apr 21, 2009 kl. 12:07 AM skrev Quincey Morris: 2. If I register a tracking rect, will the mouseMoved: message keep on spamming, or will only mouseEntered: and mouseExited: be sent? Tracking rects have no effect on the production of mouseMoved messages. So is there any difference at al

Tracking rects, tracking areas and events

2009-04-20 Thread Erik Österlund
I have a few questions about the subject. 1. What is the difference between tracking areas and tracking rects? 2. If I register a tracking rect, will the mouseMoved: message keep on spamming, or will only mouseEntered: and mouseExited: be sent? If I understood this correctly, all three are ac