Molto tempo fa, Windows aveva un PowerToy (più tardi in TweakUI) chiamato X-Mouse che, tra le altre cose, supportava l'X vecchio stile "focus segue il mouse", dove "focus" e "primo piano" non erano la stessa cosa. Non credo che sia più mantenuto (l'ultimo avvistamento è stato per WinXP).
Anche se non l'ho usato ampiamente, lo strumento gratuito di scripting di Windows AutoIT può fare quello che vuoi con uno script breve:
#include <WinAPI.au3>
#include <Constants.au3>
#include <WindowsConstants.au3>
#include <MenuConstants.au3>
#include <SendMessage.au3>
Local $hWnd,$flags,$regexp
Func MyExit()
MsgBox(0,"Drop Window","Quitting!",2)
Exit 0
EndFunc
$flags = BitOr($SWP_NOMOVE,$SWP_NOSIZE,$SWP_NOACTIVATE,$SWP_ASYNCWINDOWPOS,$SWP_NOSENDCHANGING)
;; hot key to call exit: ALT + F11
HotKeySet("!{F11}","MyExit")
;; application window title
$regexp=".*Notepad$"
;; 10 second time out on first startup,
$hWnd = WinWait("[REGEXPTITLE:" & $regexp & "]", "", 10)
;; or wait forever
;$hWnd = WinWait("[REGEXPTITLE:" & $regexp & "]")
If ($hWnd) Then
;; uncomment next line to maximize window first
;_SendMessage($hWnd,$WM_SYSCOMMAND,$SC_MAXIMIZE)
_WinAPI_SetWindowPos($hWnd, $HWND_BOTTOM, 0, 0, 0, 0, $flags);
While 1
If WinWaitActive($hWnd,"",10) Then
_WinAPI_SetWindowPos($hWnd, $HWND_BOTTOM, 0, 0, 0, 0, $flags);
EndIf
;; check for new window
$hWnd = WinWait("[REGEXPTITLE:" & $regexp & "]","",1)
;; uncomment next 3 lines to quit if no window
;if (NOT $hWnd) Then
; MyExit()
;EndIf
Sleep(250)
Wend
Else
MsgBox(0,"Drop Window","No window title matching /" & $regexp & "/")
EndIf
"topmost" è una proprietà di finestra persistente mantenuta da WM, non esiste un "bottom most" equivalente, quindi dobbiamo spostarci un po '.
Il ciclo While attende che l'applicazione ottenga il primo piano, quindi lo rilascia di nuovo mantenendo lo stato attivo della tastiera. I popup modali possono talvolta interferire con questo, ma dovrebbe essere abbastanza utilizzabile. Lo script continuerà a essere eseguito in background dopo il termine del programma guardato. Alt + F11 per uscire in qualsiasi momento.
Cambia $ regexp in modo che corrisponda a "mIRC" o qualsiasi altra cosa. Quanto sopra gestirà in modo affidabile solo una finestra alla volta. Leggi i documenti di AutoIT per WinWait () per vedere come abbinare finestre diverse dal titolo della finestra.
Salvare in dropwindow.au3 ed eseguirlo con "autoit3 dropwindow.au3".
http://www.autoitscript.com/site/autoit/downloads/
foreground
.