Another script which some people might not be abel to use but:
It sets your status to BRB on MSN messenger and pauses a playing song (WMP) on key window-B.
Sets status Online on MSN messenger and plays the song on key window-o.
I use MSN plus. If you don't the /all brb won't work (sends brb to all open convos)
Its probably easy to modify to change it to Winamp if you want. Again, i know this script isn't very stable, any suggestions would be appricated.
BRB:
Code:
#b::
Send, /all brb{enter}
IfWinExist, Windows Media Player
{
WinActivate ; Automatically uses the window found above.
Send, {ALT}PP
WinMinimize
}
IfWinExist, MSN Messenger
{
WinActivate ; Automatically uses the window found above.
Send, {ALT}FME
WinMinimize
}
return
Back:
Code:
#o::
Send, /back{enter}
IfWinExist, Windows Media Player
{
WinActivate ; Automatically uses the window found above.
Send, {ALT}PP
WinMinimize
}
IfWinExist, MSN Messenger
{
WinActivate ; Automatically uses the window found above.
Send, {ALT}FMO
WinMinimize
}
return