Re: libraries for flashing a message

2011-05-01 Thread Jerry Krinock
On 2011 May 01, at 15:46, Jason Harris wrote: > Before I roll my own, I am wondering if there are any libraries around which > can briefly display a nice notification bubble over a window. You could get a good start with Matt Gemmell's MAAttachedWindow: http://mattgemmell.com/2007/10/03/maatta

Re: libraries for flashing a message

2011-05-01 Thread John Joyce
People often use Growl for this. However, please be careful how you use it. Provide options to turn it off. On May 1, 2011, at 5:46 PM, Jason Harris wrote: > Hi All, > > Before I roll my own, I am wondering if there are any libraries around which > can briefly display a nice notification bubbl

Re: Scroll view within scroll view blocks scrolling

2011-05-01 Thread Scott Anguish
On Apr 28, 2011, at 7:37 PM, Michael Dautermann wrote: > I can't think of any major shipping apps that have scrolling NSTextViews > contained within a parent NSScrollView. Web pages... :-) > Wouldn't it be possible to try to simplify the user interface? Oh, this I agree completely with. But I

Re: *Send* a URL request from Cocoa to app's private URL scheme

2011-05-01 Thread Jerry Krinock
On 2011 May 01, at 18:46, Jeff Johnson wrote: > Have you tried -[NSWorkspace openURL:]? Or do you need to send responses to > the messages? That does it – no response needed. Thank you, Jeff. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Re: *Send* a URL request from Cocoa to app's private URL scheme

2011-05-01 Thread Jeff Johnson
Hi Jerry. Have you tried -[NSWorkspace openURL:]? Or do you need to send responses to the messages? -Jeff On May 1, 2011, at 8:21 PM, Jerry Krinock wrote: > My app is registered to handle a private URL scheme, with which it receives > messages from web browser bookmarklets. If I type either

*Send* a URL request from Cocoa to app's private URL scheme

2011-05-01 Thread Jerry Krinock
My app is registered to handle a private URL scheme, with which it receives messages from web browser bookmarklets. If I type either this: javascript:document.location.href='myScheme://myHost'; or this myScheme://myHost into Safari's address bar and hit 'return', my app gets the message. I w

Re: simulate click on NSStatusItem

2011-05-01 Thread Kyle Sluder
On Sun, May 1, 2011 at 4:18 PM, Martin Batholdy wrote: > Hi, > > > I am currently working on a StatusItem app > (so I only have a small icon on the upper right side in the systemStatusBar). > > I recently implemented a shortcut for the main function of this status item > app. > > Now when the sho

simulate click on NSStatusItem

2011-05-01 Thread Martin Batholdy
Hi, I am currently working on a StatusItem app (so I only have a small icon on the upper right side in the systemStatusBar). I recently implemented a shortcut for the main function of this status item app. Now when the shortcut-button is pressed an action is invoked just like you could invoke

libraries for flashing a message

2011-05-01 Thread Jason Harris
Hi All, Before I roll my own, I am wondering if there are any libraries around which can briefly display a nice notification bubble over a window. It would be displayed and then after say time period eg 3 seconds taken down... Any user initiated action that targets the responder chain for the w

Re: what kind of pictures am i allowed to draw onto NSOpenGLView?

2011-05-01 Thread Kyle Sluder
On Sun, May 1, 2011 at 8:10 AM, eveningnick eveningnick wrote: > I am trying to find a way to display a set of images serially on > window. As far as i understood reading Apple programming guides (Core > image, OpenGL) and samples,  NSOpenGLView is the optimal choice for > the task, since it offer

what kind of pictures am i allowed to draw onto NSOpenGLView?

2011-05-01 Thread eveningnick eveningnick
Hi I am trying to find a way to display a set of images serially on window. As far as i understood reading Apple programming guides (Core image, OpenGL) and samples, NSOpenGLView is the optimal choice for the task, since it offers asynchrony and delegates anything possible to the GPU. According