I am trying to open a NSWindow using the following code: NSWindowController *window = [[NSWindowController alloc] initWithWindowNibName:@\"MainWindow\"];
I am trying to update another windows when the one becomes visible. So I found the NSWindowDidExp开发者_运维问答oseNotification and tried to work with it, so I wrote in my awakeFromNib:
Is there a way to make a \"makeKeyAndOrderToFront\" without beeing in the Application? If I am in Safari and in the Menu Bar there is a MenuItem to my App, after I press开发者_运维技巧 this, i want t
I\'ve a 开发者_高级运维window that will have an unknown amount of text fields, determined by the content of a remote server.
I have an app that allows multiple windows.I have a strange bug where, if I repeatedly open and close windows, new windows are positioned lower and lower on the screen.I would expect this if I were ke
Is there a way to have my app\'s window receive keyboard and/or mouse events (i.e. user clicking on window\'s buttons) while still retaining focus to another, unrelated app?
Okay, a REALLY fundamental question about window sizes here... If I create an NSWindow in IB, set its size to 216 x 144 points (exactly 3 inches by 2 inches) then print the window, it measures exactl
I have a custom window (matt gemells Transparent Window class) and I need to change the window\'s alpha value to achieve a fade in/out effect and perform a \"makeKeyAndOrderFront:\".
In the past I\'ve been successfully able to fade in an NSWindow using the following code; if (![statusWindow isVisible])
I tried this but my program crashed. - (void)windowWillClose:开发者_JAVA技巧(NSNotification *)notification