ObjectDock + quick launch ShowDesktop
Sunday, March 16, 2008 by zyzyx_ | Discussion: ObjectDock
Is there still an issue even in 1.9 plus version?
And how to fix it if i want to use show desktop on quick launch, and don't want bottom dock always on top?
Thank you.
Reply #2 Sunday, March 16, 2008 9:54 AM
And second one doesnt work, works sometimes, but sometimes it hides it also.
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 Sunday, March 16, 2008 9:42 AM
You can use.
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
OR
Copy and paste the following into a text file and save it as ToggleDesktop.vbs.
Then create a new shortcut linked to this file.
Set Shell = CreateObject ("Shell.Application")
Shell.ToggleDesktop
Set Shell = Nothing