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 

MSN Tab

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



Joined: 02 Mar 2004
Posts: 444
Location: SLC, Utah

PostPosted: Sun Jul 03, 2005 12:46 am    Post subject: MSN Tab Reply with quote

For use with MSN Messenger, or Trillian (AIM, ICQ, IRC, MSN, Yahoo) to "alt+tab" between just your IM windows using alt+q.

Code:
!q:: ; ALT + Q
SetTitleMatchMode, 2
GroupAdd, msn, ahk_class IMWindowClass
GroupAdd, msn, ahk_class icoAIM
GroupAdd, msn, ahk_class icoMSN
GroupAdd, msn, ahk_class icoICQ
GroupAdd, msn, ahk_class icoIRC
GroupAdd, msn, ahk_class icoYahoo
GroupAdd, msn, ahk_class icoPMsgAIM
GroupAdd, msn, ahk_class icoPMsgMSN
GroupAdd, msn, ahk_class icoPMsgICQ
GroupAdd, msn, ahk_class icoPMsgIRC
GroupAdd, msn, ahk_class icoPMsgYahoo
GroupAdd, msn, ahk_class aim-icon
GroupAdd, msn, ahk_class msn-icon
GroupAdd, msn, ahk_class icq-icon
GroupAdd, msn, ahk_class irc-icon
GroupAdd, msn, ahk_class yahoo-icon
GroupActivate, msn
return

thanks,
beardboy
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10467

PostPosted: Sun Jul 03, 2005 2:36 am    Post subject: Reply with quote

That looks convenient.

I use GroupActivate a lot, such as for visiting MSIE windows one by one, the various Outlook windows, and also the various instances of Notepad and Metapad lying around. Due to their convenience, these GroupActivate hotkeys have breathed new life into the somewhat clunky Explorer shell.
Back to top
View user's profile Send private message Send e-mail
Payam



Joined: 07 Apr 2004
Posts: 58

PostPosted: Tue Jul 05, 2005 8:16 am    Post subject: Reply with quote

Chris, could you shed some more light on how you are actually using the GroupActivate (per below) to enhance explorer?
Thanks

(P.S. Thank you for adding ListView Smile -your implementation is superb as always)

Chris wrote:
That looks convenient.

I use GroupActivate a lot, such as for visiting MSIE windows one by one, the various Outlook windows, and also the various instances of Notepad and Metapad lying around. Due to their convenience, these GroupActivate hotkeys have breathed new life into the somewhat clunky Explorer shell.
Back to top
View user's profile Send private message Send e-mail MSN Messenger
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10467

PostPosted: Wed Jul 06, 2005 2:29 am    Post subject: Reply with quote

I use GroupActivate to make a single hotkey activate a series of windows, one at a time. This works great with MSIE, Outlook, and Text editors (one hotkey for each) because you can quickly visit related windows without having to use the taskbar or alt-tab. Here is one example from the GroupAdd page:
Code:
; In the autoexecute section at the top of the script:
GroupAdd, MSIE, ahk_class IEFrame ; Add only Internet Explorer windows to this group.
return ; End of autoexecute section.

; Assign a hotkey to activate this group, which traverses
; through all open MSIE windows, one at a time (i.e. each
; press of the hotkey).
Numpad1::GroupActivate, MSIE, r

I also use GroupDeactivate to periodically visit types of windows that I don't want to be always open. Such windows can be closed if they are no longer needed.

So the main enhancement to Explorer is that I don't use the taskbar much at all anymore, nor do I alt-tab nearly as often.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   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