Re: Fullscreen Window
Re: Fullscreen Window
- Subject: Re: Fullscreen Window
- From: Conor <email@hidden>
- Date: Tue, 20 Mar 2007 15:41:09 +0100
Ricky Sharp is correct that there is a recommended way for full screen
(SetSystemUIMode) instead of capturing the screen if you are not coding a
game. However to get your code working change the window level to
CGShieldingWindowLevel()
[mainWindow setLevel: CGShieldingWindowLevel()];
Otherwise remove the capture code and replace with:
//kUIOptionDisableProcessSwitch option for disabling command-tab
SetSystemUIMode(kUIModeAllHidden, kUIOptionAutoShowMenuBar);
Relevant Apple guide:
http://developer.apple.com/technotes/tn2002/tn2062.html
Regards,
Conor
http://www.bruji.com/
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden