|
tomcom
|
 |
« on: February 22, 2010, 04:01:45 PM » |
|
I'm one of those types that hates desktop icons & hide them 98% of the time. I can go through the right click exercise,(I have XP),and do the hide/show icon dance easy enough but I would love to have some silly little applet that could live in quick launch or better yet in the system tray that would hide & seek my desktop icons with the push of a button. (Yes I know I want instant gratification!) Windows+D is fine for showing & hiding the desktop but I'm looking for something like that for desktop icons. Maybe just a custom keyboard command/short cut or something. I guess this post is really a suggestion for one of you slick coder guys to come up with something,or maybe just tell me how to do it myself. anyone? Buehler? Ferris Buehler? anyone? tom? 
|
|
|
|
Logged
|
|
|
|
|
Stephen66515
|
 |
« Reply #1 on: February 22, 2010, 05:00:01 PM » |
|
I'm one of those types that hates desktop icons & hide them 98% of the time. I can go through the right click exercise,(I have XP),and do the hide/show icon dance easy enough but I would love to have some silly little applet that could live in quick launch or better yet in the system tray that would hide & seek my desktop icons with the push of a button. (Yes I know I want instant gratification!) Windows+D is fine for showing & hiding the desktop but I'm looking for something like that for desktop icons. Maybe just a custom keyboard command/short cut or something. I guess this post is really a suggestion for one of you slick coder guys to come up with something,or maybe just tell me how to do it myself. anyone? Buehler? Ferris Buehler? anyone? tom?  Firstly, Welcome, Secondly, if you need something like that coding, you will get a better responce posting in the Coding Snacks section 
|
|
|
|
|
Logged
|
No trees were harmed during the creation of this message. Millions of electrons, however, were terribly inconvenienced"Think left and think right and think low and think high. Oh, the things you can think up if only you try!" - Dr. Seuss
|
|
|
|
MilesAhead
|
 |
« Reply #2 on: February 22, 2010, 05:05:10 PM » |
|
I came to the conclusion that desktop icons are more hassle than they're worth. The only time I have a desktop icon is if I do a deskCut in my browser. It exists just long enough for me to drag it over the Lan. Then I delete it. What I did instead was create a folder with subfolders for all my apps. Hide that folder in my Documents. Then drag all the subcategory folders onto RocketDock and assign custom icons to the folders. The attachment shows the custom subfolders outlined in RocketDock  But Stephen is right. Try for a Coding Snack if you like. 
|
|
|
|
« Last Edit: February 22, 2010, 05:07:50 PM by MilesAhead »
|
Logged
|
"I can't speak to anyone anywhere because I flunked Esperanto." -- MilesAhead
|
|
|
|
|
skwire
|
 |
« Reply #3 on: February 22, 2010, 06:23:05 PM » |
|
|
|
|
|
|
Logged
|
|
|
|
|
PhilB66
|
 |
« Reply #4 on: February 22, 2010, 06:33:00 PM » |
|
|
|
|
|
|
Logged
|
|
|
|
|
PhilB66
|
 |
« Reply #5 on: February 22, 2010, 06:39:40 PM » |
|
|
|
|
|
|
Logged
|
|
|
|
|
AndyM
|
 |
« Reply #6 on: February 22, 2010, 06:46:54 PM » |
|
Desktop Icon Toy http://www.idesksoft.com/will do what you want I believe, plus a few other things (like shrinking icons, hiding icon text, showing only icon text, saving and restoring layouts). I'm still using 3.0 which does exactly what I need. You could set it to toggle hide/reveal your (tiny of course) icons with a single click on the tray icon.
|
|
|
|
|
Logged
|
|
|
|
|
Stoic Joker
|
 |
« Reply #7 on: February 22, 2010, 07:10:48 PM » |
|
Wow! That thing's still around?!? I used to love it back in the Win2k days. but gave it up when XP came out (features it had at the time were already in XP). It certainly has grown since then.
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #8 on: February 23, 2010, 03:12:00 AM » |
|
Iconoid can hide your icons until you click your desktop - they will show then for a user-defined period of time - with choice to show or hide tray icon (access via desktop context menu if necessary) I love it (= never have to think about it & miss it if off)  and it works fine here with XP http://www.sillysot.com/
|
|
|
|
« Last Edit: February 23, 2010, 03:13:38 AM by tomos »
|
Logged
|
|
|
|
|
tomcom
|
 |
« Reply #9 on: February 23, 2010, 04:51:07 PM » |
|
Thanks everyone.I downloaded the one suggested by PhilB66 & it's just what i was looking for.1 further question it says i can make a shortcut key?? how? thanks again 
|
|
|
|
|
Logged
|
|
|
|
|
PhilB66
|
 |
« Reply #10 on: February 23, 2010, 07:58:12 PM » |
|
Right-click on deskicons.exe and select "Create Shortcut" from the popup menu. Then, right-click on the Shortcut to deskicons.exe file and choose "Properties". Go to "Shortcut" tab and set the key (e.g. Ctrl + Alt + Q) to toggle the desktop icons.
|
|
|
|
|
Logged
|
|
|
|
|
Innuendo
|
 |
« Reply #11 on: February 24, 2010, 05:45:11 PM » |
|
Stardock's Fences will hide desktop icons (among other things) via a keyboard shortcut. There's a Pro and a Free edition, but the free edition will do what you are asking.
|
|
|
|
|
Logged
|
|
|
|
|
vixay
|
 |
« Reply #12 on: March 08, 2010, 11:55:03 PM » |
|
some autohotkey code i use for this functionality [ copy or print] ;function to return toggled values ;first call returns true toggle() { static t t := !t Return, t } EnableDisableDesktopIcons() { ;relies on having DetectHiddenWindows OFF if toggle() WinShow,Program Manager Else WinHide,Program Manager } #`::EnableDisableDesktopIcons() ;;Enable/disable desktop icons (shortcut key Win+`) Doesn't work with fences installed though, but you can then use fences, ESC key to toggle it.
|
|
|
|
|
Logged
|
"Drunk on the Nectar of Life!" -me
|
|
|
|
Tuxman
|
 |
« Reply #13 on: March 09, 2010, 10:05:43 AM » |
|
Stardock's Fences will hide desktop icons (among other things) via a keyboard shortcut. There's a Pro and a Free edition, but the free edition will do what you are asking. Fences also enables you to selectively exclude icons from being hidden. 
|
|
|
|
|
Logged
|
I bet when Cheetahs race and one of them cheats, the other one goes "Man, you're such a Cheetah!" and they laugh & eat a zebra or whatever. - @VeryGrumpyCat
|
|
|
|
grandpastan
|
 |
« Reply #14 on: March 14, 2010, 10:40:55 PM » |
|
Another easy thing is just create a folder on your C drive (and put shortcuts that you want in it), or anywhere for that matter and create a new toolbar from your taskbar for that folder, set it to hide, and all is well.
|
|
|
|
|
Logged
|
“You can tell a lot more about a person by what he says about others than by what others say about him.” Anonymous
|
|
|
|