tags:

views:

30

answers:

2

I want to create a windows style error popup for my Cocoa application like this one alt text

Is there any tutorial how to do this? Or can somebody give me at least the names of a few API functions that i need to check out.

+1  A: 

Apple has an example: Round Transparent Window

No one in particular
And to staple that window to the window with the main content, add it as a child window. http://developer.apple.com/mac/library/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow_Class/Reference/Reference.html#//apple_ref/occ/instm/NSWindow/addChildWindow:ordered:
Peter Hosey
A: 

Take a look at MAAttachedWindow. You can configure its background and border to match.

Joshua Nozzi