Detect & Close Winamp: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.) |
m (Added category links.) |
||
Line 31: | Line 31: | ||
FunctionEnd | FunctionEnd | ||
</highlight-nsis> | </highlight-nsis> | ||
[[{{ns:14}}:Other Products Version Detection Functions]] |
Revision as of 21:35, 30 April 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