up vote 3 down vote favorite
5
share [g+] share [fb]

is there a way to capture application that was previously active, before my application was brought to front by user?

I've tried to this in applicationWillBecomeActive: delegate method, but my application is already mark as active.

Thanks.

link|improve this question
feedback

1 Answer

up vote 9 down vote accepted

Register for the NSWorkspaceDidDeactivateApplicationNotification notification in NSWorkspace. This will give you an NSRunningApplication instance of what was deactivated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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