AutoHotkey Community

It is currently May 27th, 2012, 1:29 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: MSN Tab
PostPosted: July 3rd, 2005, 12:46 am 
Offline

Joined: March 2nd, 2004, 10:10 pm
Posts: 443
Location: SLC, Utah
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 3rd, 2005, 2:36 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 5th, 2005, 8:16 am 
Offline

Joined: April 7th, 2004, 2:43 pm
Posts: 62
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 :) -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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 6th, 2005, 2:29 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
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.


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

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bon, Yahoo [Bot] and 14 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