Detect & Close Winamp: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author and download links, and changed format of some pages.)
m (Updated author links.)
Line 1: Line 1:
{|align=right
|<small>Author: [[{{ns:2}}:jan|jan]] ([[{{ns:3}}:jan|talk]], [[{{ns:-1}}:Contributions/jan|contrib]])</small>
|}
<br style="clear:both;">
== Closing Winamp 1.x and 2.x ==
== Closing Winamp 1.x and 2.x ==


Line 27: Line 31:
FunctionEnd
FunctionEnd
</highlight-nsis>
</highlight-nsis>
Page author: [[User:jan|jan]]

Revision as of 23:28, 29 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