Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 to show a window of my App in the Front (makeKeyAndOrderToFront makes this just if you are in the Application).

Which way can I use? And how can I animate this Window (like Tweeties Add new Tweet -> atebits.com).

Thank you!

share|improve this question
More information, please. Describe your menu extra with relationship to your application. Do you have the menu extra and a separate application, or is the menu extra the application (and it has a hidden window)? – Joshua Nozzi Apr 7 '10 at 17:12
Both Windows are in one XIB - both are using the same Controller – ahmet2106 Apr 7 '10 at 17:47
1  
This is still too vague. – Joshua Nozzi Apr 7 '10 at 17:56

4 Answers

As you've discovered, changing the window order within your application does not have any impact on which application is active. You can bring your application to the foreground by activating it:

[NSApp activateIgnoringOtherApps:YES];

If your application had a dock icon the behavior would be similar to the user clicking on it.

share|improve this answer

Applescript would be a trivially easy way to make your app frontmost. It won't be doing any animation, though.

tell application "System Events" to set frontmost of process "My Application" to true
share|improve this answer
thank you...... – Parag Bafna Mar 20 '12 at 10:10

Perhaps the best way to accomplish what you want, if I understand the question correctly, is to have your application respond to an Apple event which you send to it after your menu item is selected which will bring your application and desired window to the front.

share|improve this answer

Provided your application has a connection to the window server (which it will if it's using AppKit or Carbon), you can use the Core Services function SetFrontProcess() to bring it to the fore. SetFrontProcessWithOptions() can be used to bring only the frontmost non-floating window of your app to the fore. These functions appear to be available to 64-bit applications, but if you're targeting 10.6+, you're likely better off using the NSRunningApplication class. Something like

[[[NSRunningApplication
   runningApplicationsWithBundleIdentifier:ident] lastObject]
 activateWithOptions:0]

should do the trick.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.