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: bluehz on Oct 29, '02 10:55:38AM

Sorry - I have tried EVERYTHING to get this thing to post the proper characters req to display the script above - its not going to do it. It displays fine in the preview then as soon as I hit the submit button it mangles the last of the script.So the script above is chopped of at the end. Just remove everything BELOW

/usr/bin/open /Users/username/LoginApps/*

and it will work fine

PS - is there a guide somewhere on just what Geeklog will accept and what it mangle and maybe some tips from teh pros on sneaking stuff in...



[ Reply to This | # ]
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 | # ]