I\'ve tried searching for this, and have seen others with similar problems but don\'t seem to have found an answer anywhere....
I have an AppleScript that I am tryin
Hello from 2k19 :) The approach below has helped to me
tell app "app_name" launch delay 2 end tell tell app "app_name" do something usefull end tell
or
osascript -e "tell app \"app_name\"" -e "launch" -e "delay 2"-e "end tell" -e "tell app \"app_name\"" -e "do someting usefull" - e "end tell"