Nathan-MA Posted June 27, 2022 Posted June 27, 2022 Hi, First post here, and I also tried to research this before creating this post. Straight to the question: Is there a workflow to open any application on a new window? I've been using a workflow to open a new Chrome window for example I've named as `nchroem`. But I was wondering if I could make a simple workflow: ``` # Alfred Command new <Any Application> ``` ``` # script on alfred_script(q) tell application "<Application Path>" make new window end tell end alfred_script ``` But this is so simple that It got me wondering, maybe someone has already developed something similar out there. So there is any workflow to open any application on a new window?
vitor Posted June 27, 2022 Posted June 27, 2022 Welcome @Nathan-MA, There’s no standard way to make a new window for every application. Each will implement it their own way and many will be similar, but not universal. Plus, not every application allows more than one window. But you can open a new instance of an application. That has the side-effect of creating a new window, but also a new icon on the Dock. And when accessing the app via AppleScript of JXA, you’ll only get access to one of them. OpenActions does that. Nathan-MA 1
Nathan-MA Posted June 29, 2022 Author Posted June 29, 2022 Hi @vitor Thank you the welcome and sorry for the late response. OpenActions is exactly what I'm looking for, thank you for the detailed informations on the matter! vitor 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now