AutoHotkey Community

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

All times are UTC [ DST ]




Post new topic Reply to topic  [ 169 posts ]  Go to page Previous  1 ... 8, 9, 10, 11, 12  Next
Author Message
 Post subject: Re: page faults
PostPosted: August 30th, 2011, 10:48 am 
Offline

Joined: April 23rd, 2010, 11:22 am
Posts: 64
reesd wrote:
Is anyone else noticing a huge amount of page faults for alttab? My AutoHotKey.exe running alttab shows 15 million page faults, the next item is explorer with only 1.8 million.

Thanks,
d


No - AltTab - 48k vs Firefox at 10million (and many others in between)


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: page faults
PostPosted: August 30th, 2011, 3:54 pm 
capitalH wrote:
reesd wrote:
Is anyone else noticing a huge amount of page faults for alttab? My AutoHotKey.exe running alttab shows 15 million page faults, the next item is explorer with only 1.8 million.

Thanks,
d


No - AltTab - 48k vs Firefox at 10million (and many others in between)


Ok, I think its probably a problem on my system. I restart Firefox a lot also as it gets big so that is probably why its not showing a high total, even though over the duration of all the firefox runs its probably pretty high. Still a little weird that AHK would be so high, I guess because it gets activated a lot. Thx.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 31st, 2011, 11:26 am 
Offline

Joined: April 26th, 2011, 4:45 am
Posts: 9
Very nice program. Can this be activated by a mouse gesture ( in addition to ALT+TAB ) like right mouse down and drag down. I want to keep the ALT+TAB window until I activate a window or inactivate ALT+TAB window.

Thanks in advance.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: February 15th, 2012, 11:55 pm 
Offline

Joined: May 12th, 2009, 10:35 pm
Posts: 14
The latest/08-04-13 version of AltTab.ahk seems to break with the latest AHKL. The problem seems to be on line 396 where its calling ListView with an r option with a blank value.

Instead of this
Code:
Gui, 1: Add, ListView, x-1 y+-4 r%Window_Found_Count% w%Listview_Width% AltSubmit -Multi NoSort Background%Listview_Colour% Count10 gListView_Event vListView1 HWNDhw_LV_ColorChange,%Col_Title_List%

it needs to be this
Code:
    Gui, 1: Add, ListView, x-1 y+-4 w%Listview_Width% AltSubmit -Multi NoSort Background%Listview_Colour% Count10 gListView_Event vListView1 HWNDhw_LV_ColorChange,%Col_Title_List%


I've put the original version in github along with my updates at https://github.com/studgeek/AltTabAHK/b ... AltTab.ahk.

This particular change is at
https://github.com/studgeek/AltTabAHK/c ... AltTab.ahk

d


Last edited by reesd on February 16th, 2012, 12:30 am, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject: still using AltTab.ahk
PostPosted: February 15th, 2012, 11:56 pm 
Offline

Joined: May 12th, 2009, 10:35 pm
Posts: 14
Are other folks still using AltTab.ahk? I can stand Windows without it, but since no one else noticed the issue with AHKL I wonder if people have moved on to something else?

Thanks,
d


Report this post
Top
 Profile  
Reply with quote  
PostPosted: February 16th, 2012, 12:33 am 
Offline

Joined: May 12th, 2009, 10:35 pm
Posts: 14
reesd wrote:
FYI, I needed to add ASCIII code 222 for backslash to keep backslash working. I'm not sure why, but recently my backslash code seemed to change from 220 to 222. I recently updated to BootCamp 3.2, so possibly that caused it? In any case, here is the change in case anyone else is having the problem. I basically added the " or Key_Pressed_ASCII =222".

Code:
  If (Key_Pressed_ASCII =92 or Key_Pressed_ASCII =220 or Key_Pressed_ASCII =222) ; \ or Alt+\


d


I added this change to my github version at
https://github.com/studgeek/AltTabAHK/c ... AltTab.ahk


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 5th, 2012, 1:23 pm 
Offline

Joined: March 5th, 2012, 12:04 pm
Posts: 7
Really nice stuff! Found your script a week ago and now i can't stand Windows without it. That's exactly the alt-tab dialogue i want to have in everyday use. Thank you!


Report this post
Top
 Profile  
Reply with quote  
PostPosted: March 6th, 2012, 8:29 am 
Offline

Joined: April 23rd, 2010, 11:22 am
Posts: 64
reesd wrote:
Are other folks still using AltTab.ahk? I can stand Windows without it, but since no one else noticed the issue with AHKL I wonder if people have moved on to something else?

Thanks,
d


I am using it - though since I to _L I rewrote it. Most of the data is now stored in objects in my version - since I find it easier to manage and understand.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: March 13th, 2012, 5:34 am 
Offline

Joined: May 12th, 2009, 10:35 pm
Posts: 14
capitalH wrote:
reesd wrote:
Are other folks still using AltTab.ahk? I can stand Windows without it, but since no one else noticed the issue with AHKL I wonder if people have moved on to something else?

Thanks,
d


I am using it - though since I to _L I rewrote it. Most of the data is now stored in objects in my version - since I find it easier to manage and understand.


Care to share :)? I prefer objects also.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: group switching
PostPosted: March 13th, 2012, 5:52 am 
Offline

Joined: May 12th, 2009, 10:35 pm
Posts: 14
I must admit I have yet to get group hot keys to work. Everything I try just pops the list view up for a second then closes it. Has anyone else got it to work who can tell me what I am missing?

What I would really like is a keyboard way to switch groups once the listview is up. Left/Right arrow would be great for cycling through the tabs, or even 1,2,3 for that tab would work well also.

While I am listing features, I would love to search through the list based on the keys pressed rather than just jumping to the item that starts with that key. The 7plus accelerator does this, but is missing a bunch of stuff. I actually now run both, I use alttab for switching and accelerator for finding...

d


Report this post
Top
 Profile  
Reply with quote  
PostPosted: March 13th, 2012, 7:06 am 
Offline

Joined: April 23rd, 2010, 11:22 am
Posts: 64
reesd wrote:
capitalH wrote:
reesd wrote:
Are other folks still using AltTab.ahk? I can stand Windows without it, but since no one else noticed the issue with AHKL I wonder if people have moved on to something else?

Thanks,
d


I am using it - though since I to _L I rewrote it. Most of the data is now stored in objects in my version - since I find it easier to manage and understand.


Care to share :)? I prefer objects also.


Done
Please share enhancements - it is not done, but it is working. You will notice there is some plans at the top.

http://www.autohotkey.net/~capitalH/AltTab_L.zip


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: group switching
PostPosted: March 13th, 2012, 7:07 am 
Offline

Joined: April 23rd, 2010, 11:22 am
Posts: 64
reesd wrote:
What I would really like is a keyboard way to switch groups once the listview is up. Left/Right arrow would be great for cycling through the tabs, or even 1,2,3 for that tab would work well also.


Check my upload - does it to what you want?


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: group switching
PostPosted: March 13th, 2012, 9:37 pm 
Offline

Joined: May 12th, 2009, 10:35 pm
Posts: 14
capitalH wrote:
reesd wrote:
What I would really like is a keyboard way to switch groups once the listview is up. Left/Right arrow would be great for cycling through the tabs, or even 1,2,3 for that tab would work well also.


Check my upload - does it to what you want?


Wow, your updates look very, very cool. The left/right between groups is exactly what I was looking for.

One initial question, how do I get settings? Right-click doesn't seem to be doing for me. I've manually edited DefaultSettings in the AHK file for now, but I suspect I am just missing something.

Oh, and I noticed in the release notes you added my other big want - incremental search, but it doesn't seem to be working for me. Is there a trick to using it?

Thanks!
dave


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: group switching
PostPosted: March 14th, 2012, 5:41 am 
Offline

Joined: April 23rd, 2010, 11:22 am
Posts: 64
reesd wrote:
capitalH wrote:
reesd wrote:
What I would really like is a keyboard way to switch groups once the listview is up. Left/Right arrow would be great for cycling through the tabs, or even 1,2,3 for that tab would work well also.


Check my upload - does it to what you want?


Wow, your updates look very, very cool. The left/right between groups is exactly what I was looking for.

One initial question, how do I get settings? Right-click doesn't seem to be doing for me. I've manually edited DefaultSettings in the AHK file for now, but I suspect I am just missing something.

Oh, and I noticed in the release notes you added my other big want - incremental search, but it doesn't seem to be working for me. Is there a trick to using it?

Thanks!
dave


in newfunctions.ahk - you can edit the function defaultsettings. Other than that there is no way to edit the settings (feel free to add though). I am not working on it at the moment - so it's not coming soon.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: group switching
PostPosted: March 16th, 2012, 8:16 pm 
Offline

Joined: May 12th, 2009, 10:35 pm
Posts: 14
capitalH wrote:
reesd wrote:
capitalH wrote:
reesd wrote:
What I would really like is a keyboard way to switch groups once the listview is up. Left/Right arrow would be great for cycling through the tabs, or even 1,2,3 for that tab would work well also.


Check my upload - does it to what you want?


Wow, your updates look very, very cool. The left/right between groups is exactly what I was looking for.

One initial question, how do I get settings? Right-click doesn't seem to be doing for me. I've manually edited DefaultSettings in the AHK file for now, but I suspect I am just missing something.

Oh, and I noticed in the release notes you added my other big want - incremental search, but it doesn't seem to be working for me. Is there a trick to using it?

Thanks!
dave


in newfunctions.ahk - you can edit the function defaultsettings. Other than that there is no way to edit the settings (feel free to add though). I am not working on it at the moment - so it's not coming soon.


Cool, edited it and its working great. The ability to swap between groups is as great as I hoped. I can keep my dev windows separate from my word/email windows. Like virtual desktops, but better for how I work at least.

Thanks! This is really great.

Oh, and is there a trick to incremental search? I see it in the release notes but I can't figure out the trick to making it work. For me it keeps just going to the item that starts with each letter.

Thanks again!


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 169 posts ]  Go to page Previous  1 ... 8, 9, 10, 11, 12  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: notsoobvious, rrhuffy and 23 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