Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9320839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T03:44:07+00:00 2026-06-19T03:44:07+00:00

Is there a way, in either Applescript or Objective-C, to detect when a certain

  • 0

Is there a way, in either Applescript or Objective-C, to detect when a certain application opens? My goal is to add a feature to an application that I’m working on to show a message whenever “QuickTime Player” opens, but I haven’t found a anything in the Apple developer documents that shows how to do anything like this.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-19T03:44:08+00:00Added an answer on June 19, 2026 at 3:44 am

    This is pretty simple with Objective-C. Here’s the code:

    Register for the proper notifications from NSWorkspace:

    - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
    {
        //Fetch the notification center from the workspace
        NSNotificationCenter* center = [[NSWorkspace sharedWorkspace] notificationCenter];
    
        [center addObserver:self selector:@selector(newApplicationDidLaunch:) name:NSWorkspaceDidLaunchApplicationNotification object:nil];
    
        [center addObserver:self selector:@selector(newApplicationWillLaunch:) name:NSWorkspaceWillLaunchApplicationNotification object:nil];
    
    }
    

    Then, add your selectors for the notification. The userInfo dictionary of the notification will hold everything you need to know:

    -(void)newApplicationDidLaunch:(NSNotification*)notification {
    
        NSDictionary* userInfo = notification.userInfo;
        //Do what you want here after application launch.
    }
    
    -(void)newApplicationWillLaunch:(NSNotification*)notification {
    
        NSDictionary* userInfo = notification.userInfo;
        //Do what you want here to prepare for application launch.
    }
    

    Hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way that I can add non-static data to dataannotation attributes (either
Is there a way to either suppress the generation of destructors for global objects
I'm very new to Oracle and was wondering if there's a way either through
Is there a way to zip a string (either with a gem or standard
Is there any way to create breakpoints in clojurescript? Either in the repl or
Maybe there is no difference, but is either way better than the other (or
Is there any built in way in mysql in which it either inserts all
I'm using TFS 2010 and am wondering whether there is an easy way, either
Coming from .NET background ... Is there a way to either via key stroke
Is there any way to either remove the recent apps button in android 3.0

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.