So not really sure how to even google search this question… But, I’d like to make an NSWindow, reside in the back of all other windows/apps & I want it to be displayed on every Mission Control space (still in the back).
I’ve seen other applications that do this, so I know it’s possible, just don’t know how.
(I’m referring to Lion’s function called Mission Control where you can switch through different spaces.)
Found the answer, there’s a method/enum to make it so that the window will appear in all “spaces” (mission control).
[self.window setCollectionBehavior:NSWindowCollectionBehaviorCanJoinAllSpaces];And a method to keep the window to the farthest back possible.
[self.window setLevel:kCGDesktopIconWindowLevelKey - 1];All you have to do is use these two methods, and it’ll do exactly what I requested. However, I wish there was a way to keep it from animating when coming down from Mission control (there is non to my knowledge).