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

  • Home
  • SEARCH
  • 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 8738583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:45:46+00:00 2026-06-13T10:45:46+00:00

I’m trying to write a script that logs the current app, switches to another

  • 0

I’m trying to write a script that logs the current app, switches to another app, does some task, and comes back to the original app. This is what I have

set currentApp to my getCurrentApp()
activate application "Safari"
# Some task
activate application currentApp

to getCurrentApp()
set front_app to (path to frontmost application as Unicode text)
set AppleScript's text item delimiters to ":"
set front_app to front_app's text items
set AppleScript's text item delimiters to {""} --> restore delimiters to default value
set item_num to (count of front_app) - 1
set app_name to item item_num of front_app
set AppleScript's text item delimiters to "."
set app_name to app_name's text items
set AppleScript's text item delimiters to {""} --> restore delimiters to default value
set MyApp to item 1 of app_name
return MyApp
end getCurrentApp

The weird thing is that the activate application command works if you type in a string literal, but if you pass it a string variable, it will not activate the application. Any ideas why?

  • 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-13T10:45:47+00:00Added an answer on June 13, 2026 at 10:45 am

    Your script works for me. Activating an application with a string variable has always worked in any version of OSX… so you have some different problem happening. The problem is not in the code you are showing.

    Although your code works, you can shorten your getCurrentApp() subroutine like this…

    set currentApp to my getCurrentApp()
    activate application "Safari"
    delay 1
    activate application currentApp
    
    to getCurrentApp()
        return (path to frontmost application as text)
    end getCurrentApp
    

    You really don’t even need “as text” in the subroutine if you also remove “application” from the activate line…

    set currentApp to my getCurrentApp()
    activate application "Safari"
    delay 1
    activate currentApp
    
    to getCurrentApp()
        return (path to frontmost application)
    end getCurrentApp
    

    So after all is said and done, your code could look like this…

    set currentApp to path to frontmost application
    activate application "Safari"
    delay 1
    activate currentApp
    

    EDIT: Sometimes when you try to get the frontmost application, the applescript that you are running is the frontmost application instead of the app you think is frontmost. It’s very hard to detect when this happens but I suspect this may be happening to you. So here’s a subroutine that I use the get the frontmost app. This ensures that the applescript is not returned as the frontmost app. Give it a try and see if it helps…

    on getFrontAppPath()
        set frontAppPath to (path to frontmost application) as text
        set myPath to (path to me) as text
    
        if frontAppPath is myPath then
            try
                tell application "Finder" to set bundleID to id of file myPath
                tell application "System Events" to set visible of (first process whose bundle identifier is bundleID) to false
    
                -- we need to delay because it takes time for the process to hide
                -- I noticed this when running the code as an application from the applescript menu bar item
                set inTime to current date
                repeat
                    set frontAppPath to (path to frontmost application) as text
                    if frontAppPath is not myPath then exit repeat
                    if (current date) - inTime is greater than 2 then exit repeat
                end repeat
            end try
        end if
        return frontAppPath
    end getFrontAppPath
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
I have a small JavaScript validation script that validates inputs based on Regex. I
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function

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.