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 

ALT-TAB replacement with icons and window titles in ListView
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
evl



Joined: 24 Aug 2005
Posts: 1234

PostPosted: Fri Mar 21, 2008 8:17 am    Post subject: Reply with quote

Thanks for the kind words.

deanhill1971, thanks for identifying the bug - I'll fix it ASAP (and check the groups out a bit more thoroughly - that code had some big changes since the last version).
Back to top
View user's profile Send private message
evl



Joined: 24 Aug 2005
Posts: 1234

PostPosted: Sat Mar 22, 2008 9:54 am    Post subject: Reply with quote

New version + some new screenshots in the first post.

I've fixed the group bug(s) - there was also a bug in loading the group to edit it (some quotation marks when calling a function that shouldn't have been there Rolling Eyes ) - no need to edit groups by hand now Laughing
Back to top
View user's profile Send private message
_adam
Guest





PostPosted: Sun Mar 23, 2008 7:29 pm    Post subject: Reply with quote

hi. thanks for updating. one of the most useful scripts around.

would anyone mind explaining what a group is? or, how is it to be used best? I don't quite get it. thank you.
Back to top
evl



Joined: 24 Aug 2005
Posts: 1234

PostPosted: Mon Mar 24, 2008 8:15 am    Post subject: Reply with quote

Groups explanation:

You can make a "group" of windows (under the right-click menu) that only includes or excludes certain windows. These then appear as tabs in the main window (the screenshots in the first post show the ALL group and a PSPad group I had which only included PSPad (editor) related windows).

Example 1) You could include all explorer windows and exclude all other windows.
Example 2) You could exclude a video player or other window from the list that you never want to Alt-Tab to.
Back to top
View user's profile Send private message
Azerty



Joined: 19 Dec 2006
Posts: 72
Location: France

PostPosted: Tue Mar 25, 2008 12:07 pm    Post subject: is it a bug ? Reply with quote

Hi evl

Using this script, I find the following strange behavior : when I lauch "dexplore" (the browser MS gives to browse TechNet or MSDN), ALT-TAB gives me 2 entries for each dexplore.exe running with the same window title (although each time there's only one dexplore process).

What other info would you need to help you debugging ?
Back to top
View user's profile Send private message
evl



Joined: 24 Aug 2005
Posts: 1234

PostPosted: Wed Mar 26, 2008 9:20 am    Post subject: Reply with quote

Hi Azerty

It sounds very similar to a problem I noticed (and solved) with PSPad. Basically PSPad has a strange interface that has one main window and one "hidden" window which is not really hidden (think of it as "always behind"). I'm guessing it's a similar problem. To see if it really is this case, try using something like:
WinGet, OutputVar, List, WinTitle - using the title of the window. If the list command finds two windows then there really are two windows Rolling Eyes Then the next step would be to look at the attributes of the windows to try and exclude one.

It's rather difficult to exclude certain (annoying) programs which do these things with the interface because it often tends to exclude other programs' windows too.
Back to top
View user's profile Send private message
_adam
Guest





PostPosted: Wed Mar 26, 2008 5:04 pm    Post subject: Reply with quote

hi evl

thanks for taking the time to explain the groups feature. got it now. I appreciate it. Smile
Back to top
guruglenn



Joined: 06 Apr 2008
Posts: 11

PostPosted: Sun Apr 06, 2008 5:45 am    Post subject: Reply with quote

I came here from a search, looking to figure out how to start Task Manager, and select a particular tab (TM "remembers" the last tab you used, which is nice sometimes, and not so nice sometimes).

So I was just trying to figure out how to start at Applications, so I switch to a process using the list... and here I find a complete replacement for Alt-Tab that provides a list.

And recently updated!

So with no further ado, I downloaded, and ran, and got an error Sad

Error: Parameter #2 invalid

Specifically: Tab2

And it lists line #392 as the culprit, which indeed has a Tab2 as parameter 2:

Gui, 1: Add, Tab2, vGui1_Tab HWNDhw_Gui1_Tab Background w%Gui1_Tab__width% -0x200, %Group_List% ; -0x200 = ! TCS_MULTILINE

Being rather novice at AutoHotKey, this'll take me a while to sort out... has anyone else encountered this? Do I need to do some configuration rather than just download and run?
Back to top
View user's profile Send private message
guruglenn



Joined: 06 Apr 2008
Posts: 11

PostPosted: Sun Apr 06, 2008 5:57 am    Post subject: Reply with quote

guruglenn wrote:

Being rather novice at AutoHotKey, this'll take me a while to sort out... has anyone else encountered this? Do I need to do some configuration rather than just download and run?


Embarassed Well this didn't take as long as expected... it hit me that maybe I had an older version of AutoHotkey than what the script needed, so I downloaded and installed the latest version, and the error vanished!
Back to top
View user's profile Send private message
Mazora
Guest





PostPosted: Mon Apr 07, 2008 2:43 pm    Post subject: MSN Messenger windows Reply with quote

Hi, what a wonderful script. I really like it. I'm using it it: its nice!

Could you help me out with this issue please?:

msn messenger windows are not showing up in the list , even if i type showhiddenwindows, on


ty!!!

Max
Back to top
guruglenn



Joined: 06 Apr 2008
Posts: 11

PostPosted: Mon Apr 07, 2008 6:30 pm    Post subject: Reply with quote

guruglenn wrote:
it hit me that maybe I had an older version of AutoHotkey than what the script needed, so I downloaded and installed the latest version, and the error vanished!


Makes me wonder if there is a way that a script can specify the version of AutoHotkey that it needs, and give a nice error dialog if it isn't available...

And that if there is such a way, if it should be used in this script...

(Thoughts as I prepared to become horizontal last night, and that were still remembered this morning!)
Back to top
View user's profile Send private message
_adam
Guest





PostPosted: Mon Apr 07, 2008 6:44 pm    Post subject: Reply with quote

guruglenn wrote:
guruglenn wrote:
it hit me that maybe I had an older version of AutoHotkey than what the script needed, so I downloaded and installed the latest version, and the error vanished!


Makes me wonder if there is a way that a script can specify the version of AutoHotkey that it needs, and give a nice error dialog if it isn't available...

And that if there is such a way, if it should be used in this script...

(Thoughts as I prepared to become horizontal last night, and that were still remembered this morning!)


there's a built in variable A_AhkVersion. you can use that to check.

otherwise, it's always best to check for new versions every now and then. 1mb download, no-install package, it's easier to update than most other softwares.
Back to top
google-boy
Guest





PostPosted: Thu Apr 10, 2008 3:25 am    Post subject: messenger windows Reply with quote

Yeah, why are the messenger windows not showing up in the list?
Back to top
evl



Joined: 24 Aug 2005
Posts: 1234

PostPosted: Thu Apr 10, 2008 4:46 am    Post subject: Reply with quote

... well mostly because I don't use Messenger and therefore never noticed the problem Laughing

But seriously, I fixed the issue yesterday, but want to try and iron out a small bug before posting the new code:
http://www.autohotkey.com/forum/viewtopic.php?p=190176#190176
Back to top
View user's profile Send private message
Mazora
Guest





PostPosted: Thu Apr 10, 2008 1:17 pm    Post subject: Reply with quote

ok! Thx Evl, keep up the good job Wink
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
Page 8 of 10

 
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