Re: Making an NSBorderlessWindowMask window act 'normal'
Re: Making an NSBorderlessWindowMask window act 'normal'
- Subject: Re: Making an NSBorderlessWindowMask window act 'normal'
- From: Dominique PERETTI <email@hidden>
- Date: Tue, 22 Jun 2004 16:41:52 +0200
>
I have an NSBorderlessWindowMask window that I want to act like a
>
normal window when the user clicks on it.
Try :
- (BOOL) canBecomeKeyWindow
{
return YES;
}
This sample file may be helpful :
http://developer.apple.com/samplecode/FunkyOverlayWindow/
FunkyOverlayWindow.html
Dominique PERETTI
http://www.lachoseinteractive.net
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.