I need to create a HUD-like window programmatically when the user press on my main view. Here's the code I use, but I only get a standard window.

videoWindow= [[NSPanel alloc]
      initWithContentRect:NSMakeRect(200.0, 200.0, 300, 200) 
      styleMask:NSTitledWindowMask | NSClosableWindowMask 
      backing:NSBackingStoreBuffered defer:YES];
[videoWindow makeKeyAndOrderFront:nil];

Perhaps I'm not using the right flags, but I didn't find in the documentation or on Google. Any thoughts?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 4 down vote accepted

You need to use NSPanel with the NSHUDWindowMask style mask.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.