| View previous topic :: View next topic |
| Author |
Message |
Rudebox
Joined: 10 Aug 2008 Posts: 2
|
Posted: Sun Aug 10, 2008 7:34 am Post subject: How To Minimize Everything? |
|
|
Hello..
i making a very simple script..
"
#NoTrayIcon
#d::
Send, {LWINDOWN}m{LWINUP} "
The Script Change the key Winkey+D with Winkey+M
And its work good.
i can minimze the ALL WINDOWS with another code?
because its not minimze everything
example : if im RUN, its not minimze it.
Thanks!
[EDIT , i tired WinMinimizeAll and the same..
not minimize EVERYTHING.. thanks] |
|
| Back to top |
|
 |
Peter
Joined: 30 Dec 2005 Posts: 279
|
Posted: Sun Aug 10, 2008 8:19 am Post subject: |
|
|
I'm not sure what your problem is.
If you use the Windows hotkey Win+D, it will minimize all windows (or at least, brings the desktop to the front which is visually the same).
But in your code, you just change the use of Win+D . |
|
| Back to top |
|
 |
Rudebox
Joined: 10 Aug 2008 Posts: 2
|
Posted: Sun Aug 10, 2008 8:47 am Post subject: |
|
|
yeah you right but i do it because Widgets..
if you understand..
there is problem to do
Winkey+D [Show Desktop]
[the widgets moves..]
anyway i will try with my script its ok.
Thanks |
|
| Back to top |
|
 |
Peter
Joined: 30 Dec 2005 Posts: 279
|
Posted: Sun Aug 10, 2008 10:09 am Post subject: |
|
|
It means you want to minimize all Windows, except one (Widget window) maybe?
If so, you can try via
| Code: | WinGet, IDlist, list
Loop, %IDlist% {
; minimize the right windows, except 1
} |
|
|
| Back to top |
|
 |
|