Find and Close Window: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
(FA: Identation to code. FA: "Page author" line.) |
|||
Line 2: | Line 2: | ||
Detect if an application is running and close it. Requires a valid Windows Class Name, which can be detected with tools like [http://www.gena01.com/win32spy/ Win32Spy]. | Detect if an application is running and close it. Requires a valid Windows Class Name, which can be detected with tools like [http://www.gena01.com/win32spy/ Win32Spy]. | ||
== Function Code == | == Function Code == | ||
<highlight-nsis> | |||
Function CloseWindow | |||
Push $0 | |||
loop: | |||
FindWindow $0 "MyWindow" ;insert Windows Class Name | |||
IntCmp $0 0 done | |||
SendMessage $0 16 0 0 | |||
Sleep 100 | |||
Goto loop | |||
done: | |||
Pop $0 | |||
FunctionEnd | |||
</highlight-nsis> | |||
== Examples == | == Examples == | ||
To detect and close Winamp (1.x, 2.x, 5.x) use the following script. | To detect and close Winamp (1.x, 2.x, 5.x) use the following script. | ||
To close Winamp 3.x, use <highlight-nsis>FindWindow $0 "STUDIO"</highlight-nsis> | <highlight-nsis> | ||
Function CloseWinamp | |||
Push $0 | |||
loop: | |||
FindWindow $0 "Winamp v1.x" | |||
IntCmp $0 0 done | |||
SendMessage $0 16 0 0 | |||
Sleep 100 | |||
Goto loop | |||
done: | |||
Pop $0 | |||
FunctionEnd | |||
</highlight-nsis> | |||
To close Winamp 3.x, use | |||
<highlight-nsis> | |||
FindWindow $0 "STUDIO" | |||
</highlight-nsis> | |||
Page author: [[User:Jan|Jan]] |
Revision as of 20:27, 29 April 2005
Description
Detect if an application is running and close it. Requires a valid Windows Class Name, which can be detected with tools like Win32Spy.
Function Code
Function CloseWindow Push $0 loop: FindWindow $0 "MyWindow" ;insert Windows Class Name IntCmp $0 0 done SendMessage $0 16 0 0 Sleep 100 Goto loop done: Pop $0 FunctionEnd
Examples
To detect and close Winamp (1.x, 2.x, 5.x) use the following script.
Function CloseWinamp Push $0 loop: FindWindow $0 "Winamp v1.x" IntCmp $0 0 done SendMessage $0 16 0 0 Sleep 100 Goto loop done: Pop $0 FunctionEnd
To close Winamp 3.x, use
FindWindow $0 "STUDIO"
Page author: Jan