help plz

objectdock minimizes

HI

When i click "show desktop" icon, objectdock dissapears untill i open a folder or a program. How can i make it so it is glued to desktop and always stays there. Also when i open a program with ObjectDock, objectdock is over it untill i click on the program. Can someone please help me.

THNX in advance
2,926 views 4 replies
Reply #1 Top
Show desktop isn't really showing the desktop. It's opening a window with no border and the wallpaper as a background.

OD+ or free?

In plus (on a tabbed dock) you should be able to go to the Dock Settings, Positioning, "Tabs always on top" and be good.

For the "normal" dock, Positioning, Z-Ordering (Always on top).
Reply #2 Top
This has come up so often, I've saved this as an Opera Note.

Here are a few options to consider....

"Show Desktop"
does not minimize anything. What really happens is a full screen, borderless, explorer window, opens on top of everything.



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




Reply #3 Top
This has come up so often, I've saved this as an Opera Note.