Detect & Close Winamp: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.) |
m (Adding new author and category links.) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{ | {{PageAuthor|jan}} | ||
== Closing Winamp 1.x and 2.x == | == Closing Winamp 1.x and 2.x == | ||
Line 31: | Line 29: | ||
FunctionEnd | FunctionEnd | ||
</highlight-nsis> | </highlight-nsis> | ||
[[Category:Other Products Version Detection Functions]] |
Latest revision as of 12:05, 24 June 2005
Author: jan (talk, contrib) |
Closing Winamp 1.x and 2.x
Function CloseWinamp Push $5 loop: FindWindow $5 "Winamp v1.x" IntCmp $5 0 done SendMessage $5 16 0 0 Sleep 100 Goto loop done: Pop $5 FunctionEnd
Closing Winamp 3.x
Function CloseWinamp3 Push $5 loop: FindWindow $5 "STUDIO" IntCmp $5 0 done SendMessage $5 16 0 0 Sleep 100 Goto loop done: Pop $5 FunctionEnd