Re: Getting Keyboard Events at Full Screen
Re: Getting Keyboard Events at Full Screen
- Subject: Re: Getting Keyboard Events at Full Screen
- From: Sam Goldman <email@hidden>
- Date: Fri, 23 Nov 2001 02:02:22 -0800
It's always the simplest answer. I changed everything in my code to my
subclass except that!
Sorry for posting such a silly thing, but thanks even more for the response.
It would have been a long while before I caught that one...
- Sam
>
Are you creating the window like this?
>
>
// Put up a new full screen window
>
mainWindow = [[MyWindow alloc] initWithContentRect:screenRect
>
styleMask:NSBorderlessWindowMask
>
backing:NSBackingStoreBuffered
>
defer:NO screen:[NSScreen
>
mainScreen]];
>
>
(Not using [[NSWindow alloc] etc] but rather [[MyWindowSubclassHere
>
alloc] etc]).
>
>
-- Brian