andy232 Posted October 12, 2015 Posted October 12, 2015 Hi there, Alfred: 2.8.414 OSX: El Capitan 10.11 when I start an applescript via alfred the alfred window does not disappear. It stays on top until the script is finished. I think I have this issue since El Capitan. Script example: on alfred_script(q)-- ignoring application responsestell application "Keyboard Maestro Engine" do script "03B09142-6947-4304-8F3C-6A4F49CAE859" -- or: do script "egroupware"end tell-- end ignoringend alfred_script Thank You! Greetings, Andy
deanishe Posted October 12, 2015 Posted October 12, 2015 This isn't a bug. It's literally the behaviour you're explicitly requesting by using a Run NSAppleScript Action. That is to say, Run NSAppleScript means "run this AppleScript in Alfred". If you want Alfred to bugger off out the way when you run your script, use a normal Run Script Action instead (with Language=/usr/bin/osascript (AS)). Be sure to remove the on alfred_script(q) + end alfred_script wrapper around your script.
andy232 Posted October 15, 2015 Author Posted October 15, 2015 Ah ok. I wrote this only because the behavior was another on the past. The alfred window normaly disappeared when the script started. But I will try Your suggestion, thank You!
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