- Jul 18, 2005
- 761
- 0
- 0
Well, the hard part is done for the most part. Below are what I'm using as scripts for each function. What I would like is to somehow combine these two into a single toggle button, similar to Show Desktop. Any ideas?
Minimize all windows
Set shell = wscript.CreateObject("Shell.Application")
Shell.MinimizeAll
UnMinimize all windows
dim objShell
set objShell = CreateObject("Shell.Application")
objShell.UndoMinimizeALL
set objShell = nothing
Minimize all windows
Set shell = wscript.CreateObject("Shell.Application")
Shell.MinimizeAll
UnMinimize all windows
dim objShell
set objShell = CreateObject("Shell.Application")
objShell.UndoMinimizeALL
set objShell = nothing