AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Toggle MS IM and Skype Online/Offline

 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
thinkstorm



Joined: 17 Aug 2004
Posts: 38

PostPosted: Fri Oct 29, 2004 7:06 pm    Post subject: Toggle MS IM and Skype Online/Offline Reply with quote

Hi, simple script:
Code:

OnlineOffline=0

#o::
   ; Microsoft Messenger
   Run, "C:\Program Files\Messenger\msmsgs.exe"
   WinWaitActive, Windows Messenger,,5
   If ErrorLevel <> 0
   {
      MsgBox, 48, set online/offline, cannot open Windows Messenger!, 2
      Return
   }
   Send, {Alt}F
   if OnlineOffline = 0
   {
      OnlineOffline = 1
      Send, mb
   }
   else
   {
      OnlineOffline = 0
      Send, mo
   }
   WinWaitActive, Windows Messenger,,5   
   Send, {ALT}f
   Send, c
   ; Skype
   Run, "C:\Program Files\Skype\Phone\Skype.exe"
   WinWaitActive, Skype,,5
   If ErrorLevel <> 0
   {
      MsgBox, 48, set online/offline, cannot open Skype!, 2
      Return
   }
   Send, {Alt}F
   if OnlineOffline = 1
   {
      Send, cd
   }
   else
   {
      Send, cn
   }
   WinWaitActive, Skype,,5
   Send, {ALT}f
   Send, s   
Return


Cheers,
Thorsten
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group