Show Desktop
Monday, May 9, 2005 by fliberty | Discussion: ObjectDock
Reply #2 Wednesday, May 11, 2005 10:48 AM
These are to substitute for the Windows Taskbar Show Desktop command (also Winkey+D) I had on my taskbar before I used DX and OD.
There is a Show Desktop docklet, but that command (and docklet) hides any docks set to Normal Z-ordering. Several of my docks are set to Normal so I cannot use the Show Desktop command now if I want to keep all my docks visible.
There is also a Desktop X object that uses the MinimizeAll and UndoMinimizeAll scripts. It is very fast.
I would really like to have a single docklet that would perform MinimizeAll and UndoMinimizeAll with alternate clicks. But I don't know how to create one.
Could some coding genius create one or tell me how to do it?
Reply #3 Sunday, December 25, 2005 11:09 PM
Here is what I did...
1. I set my OD+ to NOT hide the taskbar,
2. Made sure that the Taskbar had the "Quick Launch" toolbar turned on which has a desktop shortcut button,
3. Right-Click drag & copied the shortcut to desktop,
4. Dragged and dropped the newly copied shotcut onto dock....
Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!







Reply #1 Monday, May 9, 2005 8:28 PM
Winkey + M to minimize all
Winkey + shift + M to restore all
Or
Copy and paste the following into a text file and save it as ShowDesktop.vbs. Then create a new shortcut linked to this file.
Set Shell = CreateObject ("Shell.Application")
Shell.MinimizeAll
Set Shell = Nothing
and
Copy and paste the following into a text file and save it as RestoreAll.vbs. Then create a new shortcut linked to this file.
Set Shell = CreateObject ("Shell.Application")
Shell.UndoMinimizeAll
Set Shell = Nothing