You have to subclass NSWindow and override [NSWindow
canBecomeKeyWindow] to return YES in your custom class:
- (BOOL) canBecomeKeyWindow
{
return YES;
}
The default implementation returns NO for a borderless window.
...Bob Clair
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden