AutoHotkey Community

It is currently May 27th, 2012, 11:00 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: January 2nd, 2005, 3:10 pm 
Offline

Joined: January 1st, 2005, 1:05 pm
Posts: 10
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 27th, 2008, 3:15 pm 
eh, kinda nice idea,
i use msgplus for many years and i think you should use controlsend instead of send

maybe write a library for that with all msgplus functions contained

please update your code :) don't forget about the forums!


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: iDrug and 59 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group