The macosxhints Forums

The macosxhints Forums (http://hintsforums.macworld.com/index.php)
-   Tweaking OS X / Wish List (http://hintsforums.macworld.com/forumdisplay.php?f=25)
-   -   Hide All -shortcut to just the desktop (http://hintsforums.macworld.com/showthread.php?t=1016)

jeffhands 02-17-2002 04:05 PM

Hide All -shortcut to just the desktop
 
I still use my Desktop a lot as a place to put newly downloaded docs & files and to save new docs. But it's still too many steps to get back to "just the desktop".

I suggest a command "Hide All" (except desktop of course), that could be activated in the following ways:

-right click anywhere in the Finder... see "Hide All" as a choice in this small context menu.

-Command Click in Finder... same effect as above.

-Command Shift H simply hides all apps and open documents

An alternative would be that this Hide All command comes whenever you right click or command click, ragardless of what program you're in. But why it's not at least already in the Finder mystifies me. (especially since stupid Windows has had it for a few years now...)

Anyone agree (or am I missing a hidden function that already exists?)

saint.duo 02-17-2002 04:15 PM

applescript solution?
 
For classic Mac OS, I used to us a script tied tomy F15 key that would hide all apps except the Finder. It could be further customized to hide all apps except the finder and app "x", "a", whatever. I had it hide everything except the Finder, DragThing, and if it was running, Audion. I used creator codes to make this work.

Anyone know of how this could be implemented in X, and put in the dock?

didde 02-18-2002 04:51 AM

sure
 
You can do that in X as well..

I am no AppleScript guru but one could use the API for running commands through the Terminal tofind the PID of the Finder and certain apps on login and then whenever the F15 key is pressed or so the app could get a list of all running apps from the Terminal and hide all of them except Finder..

That'll work.

Just don't ask me how to do it literally. :confused:

brodie 02-18-2002 07:25 AM

i dont even thinnk thats neccessary, if you find the .rsrc file, probably located somewhere in the finder app, you could add any shortcut to the "hide others" menu item, as long as it didn't conflict with another. then use that when in the finder or assign an fkey to the finder which is also the same hide others shortcut, although im not so sure that wouldn't conflict.

mervTormel 02-19-2002 09:26 PM

there is a binary file...

% file /System/Library/CoreServices/Finder.app/Contents/Resources/English.lproj/Localized.rsrc
/System/Library/CoreServices/Finder.app/Contents/Resources/English.lproj/Localized.rsrc: data

that contains the finder menu items and their command+key equivalents. but, being a binary file, you could really flumox things if you 'tip the apple cart' so to speak.

but, prefsPanel ASM has a hide all option and a localized.strings file with its menu items. i wonder if it's as simple as adding the command+key to that?

jmelloy 02-21-2002 09:52 AM

Option-Click
 
There is a "hide current app" feature. If you option click the desktop, it will hide whatever the application on top is. Not quite as useful as a "hide all", I know, but...

Munky 02-24-2002 11:47 AM

if you hold apple+alt and click on an application in the dock (say for example finder) every thing else will be hidden. Using tinkertool will make all of theses hidden application transparent in the dock which helps avoid any confusion what is hidden and what isn't.

Phil St. Romain 02-24-2002 12:22 PM

if you hold apple+alt and click on an application in the dock (say for example finder) every thing else will be hidden

I didn't know that. That's as easy as the old Hide All. Thanks! :cool:

AHunter3 02-24-2002 06:36 PM

I have QuicKeys X. It is not all that QuicKeys for the conventional MacOS environment is and has been, but it's better than nothing, and it does allow me to put an item in a universal menu, "Go to Finder", which does so and also hides all others.

In MacOS 8/9, I use FinderPop's "Switch to Finder/Hide Others" extension, which I can access from anywhere by clicking in the overhead menu. (I moved it to the root level of "FinderPop Items" so it's the first item to come up).

vonleigh 03-02-2002 07:07 PM

Uhm, thanks for the apple-option click for hide all. I'd submit it to the site since I don't think it's been posted before ;)


vonleigh

jeffo 03-18-2002 11:56 PM

i know that classic has it and it sounds all nice but i found that i only used it once or twice every 3 or 4 months. i never have a ton of windows open because i find that i end up always hiding the program as soon as i am not using it anymore, i do this on x and 9 and even on my winblows box at work.

viennamac 03-23-2002 06:46 AM

As it hasn't been mentioned...
 
I use Show Desktop, which works just like the command mentioned above, except it doesn't open a new finder window, just hides all windows by clicking on its icon in the dock (put it in your login items). Nifty when you've downloaded an installer to the desktop.

- Chris

rmcellig 03-28-2002 08:49 PM

I secind viennamac. Show Desktop works great. now I am wondering if there is something out there that will allow me to kill all open apps instead of having to quit each app individually:confused:

JayBee 03-30-2002 02:52 PM

quit all apps? sure - it's called "Log Out" and is in the apple menu :P

rmcellig 03-30-2002 09:37 PM

I meant how do I quit all applications without logging out. I remember under OS 9 there was software that did this.

drjones 04-01-2002 06:04 PM

Here's a couple of scripts, one gets you to the desktop, the other puts everything (I think) back.
Haven't tried it with an information window open, tho.

Show Desktop:

tell application "System Events"
set visible of (every process whose visible is true and frontmost is false) to false
set visible of process "Finder" to false
end tell


show All:

tell application "System Events"
set visible of (every process whose visible is false and frontmost is false) to true
set visible of process "Finder" to true
end tell



Paste each into it's own script, then save as compiled in Script Menu (which get ;) leave a space in front of name, loose in your ~/Library/Scripts for quick access. You could save as App with the never show screen option to put them in the dock also.
For a nominal fee "HotApp" on Versiontracker will let you use command key access, but I haven't tried it. I wish the script names could be encoded for command key access like in the old OSAMenu tho.

Paul W. Brown 04-30-2002 02:49 PM

re: hide all
 
A full list of hot keys from Apple's website give you what you need to know to do this.

Marcwic 07-23-2002 04:37 PM

I would like to be able to hide apps by right clicking on their dock icon too.

rowedesign 09-03-2002 01:08 AM

command/option/click
 
I didn't notice anyone mentioning that when you have multiple apps open (or just one) you can command/option/click on any visible portion of the desktop and it hides all apps. Pretty cool!

logo 09-03-2002 04:03 AM

Would minimize all windows be sufficient?
 
Well if you press

command - alt -M

all (Finder) windows minimize to the dock and the desktop is yours!


All times are GMT -5. The time now is 04:59 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2014, vBulletin Solutions, Inc.
Site design © IDG Consumer & SMB; individuals retain copyright of their postings
but consent to the possible use of their material in other areas of IDG Consumer & SMB.