About 61,500 results
Open links in new tab
  1. open programs with applescript - Stack Overflow

    2 part question: I'm simply trying to run programs using applescript from the terminal, so I tried: $ osascript tell application "iTunes" to activate and get the error: osascript: tell: No such ...

  2. macos - How can I launch an AppleScript application and run shell ...

    Mar 27, 2014 · The launch command launches the script application without sending it an implicit run command. When the run command is sent to the script application, it processes the …

  3. desktop - Using AppleScript to open an application without the …

    I decided to write an AppleScript that I could add to the startup list, but I can't get it to work properly. I'd like to open a specific file using iA Writer on login, in 10.8 fullscreen mode, but …

  4. macos - Run application with parameters - Super User

    Aug 18, 2009 · It's possible to run a command line operation via AppleScript. The command looks like this: do shell script "{command}" You can use the OSX Script Editor to create this script. …

  5. mac - How can I open an app using Terminal? - Ask Different

    Mar 28, 2019 · open /Applications/Mail.app If you want to use AppleScript (osascript from command line), open app isn't quite equivalent. Instead, you can either use osascript -e 'tell …

  6. How can I run an application with command line arguments in …

    Is there any easy way to append command line arguments to an application on a Mac? For example, to run Opera in kiosk mode or to use a different profile in Firefox, I can type $ …

  7. What is the difference between "activate" and "launch"?

    Feb 4, 2017 · For example, you can use the launch command when you don’t want an application to open and close visibly. This is less useful in AppleScript 2.0, which launches applications as …

  8. macos - How to check in AppleScript if an app is running, without ...

    Apr 17, 2013 · But calling it from a plain text (.txt,.sh ) file will so the app will launch. If you do not want to use a .scpt file and want to use a plain text file then you could try the trick of putting a …

  9. applescript - ERROR: Expected end of line, Any ideas? - Ask Different

    Apr 18, 2024 · I am trying out something for Photoshop using apple scripts and I am getting this error: 628:632: syntax error: Expected end of line, etc. but found command name. (-2741) …

  10. Sending commands and strings to Terminal.app with Applescript

    Dec 9, 2009 · It is in Yosemite and it is bash script using AppleScript to choose a list of users for SSH servers. Basically you define an IP and then the user names.. when the application …