|
|
Reliably relaunch the Finder
(* The other option you can do is copy and paste this AppleScript into Script Editor. Then save it in your Script Menu items as a
compiled script. Many times when my Finder craps out, other apps follow its lead. You can also customize it to just focus on the finder. This script does not target background processes. *) tell application "Finder"     if the (count of processes) is not 0 then         set visible of every process to true         --set the_apps to get processes whose visible is true     end if         set the the_apps to the name of every process whose visible is true     activate me     set my_apps to {}     set the my_apps to choose from list the_apps with prompt ¬         "Choose apps to quit. Press command or shift key for multiple selections:" cancel button name "Cancel" OK button name "Ok" with multiple selections allowed end tell repeat with anApp in my_apps     set anApp to quoted form of anApp     ignoring application responses         try             do shell script "killall -c " & anApp         end try     end ignoring end repeat |
SearchFrom our Sponsor...Latest Mountain Lion HintsWhat's New:HintsNo new hintsComments last 2 daysLinks last 2 weeksNo recent new linksWhat's New in the Forums?
Hints by TopicNews from Macworld
From Our Sponsors |
|
Copyright © 2014 IDG Consumer & SMB (Privacy Policy) Contact Us All trademarks and copyrights on this page are owned by their respective owners. |
Visit other IDG sites: |
|
|
|
Created this page in 0.09 seconds |
|