Christophe31 Posted May 12, 2013 Share Posted May 12, 2013 Hi All, I'm a new user of Alfred PowerPack and I have used workflow sin yesterday. I would like to create a workflow to open 3 finder windows with a specify location. I explain : Open one windows in download location, an other one with my external HD location and the third one with movies files location. Is it possible ? And if yes could you you help me to do that ? Link to comment
jdfwarrior Posted May 13, 2013 Share Posted May 13, 2013 Hi All, I'm a new user of Alfred PowerPack and I have used workflow sin yesterday. I would like to create a workflow to open 3 finder windows with a specify location. I explain : Open one windows in download location, an other one with my external HD location and the third one with movies files location. Is it possible ? And if yes could you you help me to do that ? Create a new workflow using the keyword to script template. Set the language of the Run Script item to /usr/bin/osascript and use this code: tell application "Finder" to make new Finder window to POSIX file "<path to folder 1>" tell application "Finder" to make new Finder window to POSIX file "<path to folder 2>" tell application "Finder" to make new Finder window to POSIX file "<path to folder 3>" Obviously, add your paths at the end of each line Link to comment
Tyler Eich Posted May 13, 2013 Share Posted May 13, 2013 Hi All, I'm a new user of Alfred PowerPack and I have used workflow sin yesterday. I would like to create a workflow to open 3 finder windows with a specify location. I explain : Open one windows in download location, an other one with my external HD location and the third one with movies files location. Is it possible ? And if yes could you you help me to do that ? I would hook up a keyword of your choice to a 'Launch Apps / Files' Action. Then I would drag the folders/drives I wanted to open into that window. Keep in mind: this only works for folders/drives! If you give it a file, it will actually open that file, not reveal it in Finder. Cheers Link to comment
Christophe31 Posted May 13, 2013 Author Share Posted May 13, 2013 Hi David and Tyler, Thank you very much for your help, I tested Tyler solution (sorry David ) quickly this evening and it works fine. Thank you very much for yours answer See you. Link to comment
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