Windows di applicazioni non è normalmente chiamato istanze su OS X. Puoi aprire nuove istanze con open -n
, ma non c'è modo di farlo dall'interfaccia utente. Le applicazioni con più istanze hanno anche più icone Dock.
Seinrealtàlointendevi,potrestiaggiungereun'azioneinAlfred:
Non esiste un modo standard per aprire una nuova finestra con open
o AppleScript. Dovresti usare una terminologia diversa per ogni applicazione.
on alfred_script(q)
tell application (q as text)
activate
if number of windows is 0 then
reopen
else
if name is "TextEdit" then
tell application "TextEdit" to make new document
else if name is "Finder" then
tell application "Finder" to make new Finder window
else if name is "Safari" then
tell application "Safari" to make new document at beginning with properties {URL:"about:blank"}
end if
end if
end tell
end alfred_script