Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Easier | 19 comments | Create New Account
Click here to return to the 'Easier' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Easier
Authored by: stephen007 on Nov 05, '02 09:36:15PM

So, how can i get it to hide all the apps and return to the Finder?

# this is an applescript that hides all apps and returns to the Finder

Thanks,

Stephen



[ Reply to This | # ]
applescript answer
Authored by: poultryfarm on Nov 07, '02 06:11:06PM

try this applescript:

tell application "Finder"
set visible of every process whose visible is true and name is not "Finder" to false
end tell



[ Reply to This | # ]