topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 6:19 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Request: Power alt-tab  (Read 6796 times)

cool-RR

  • Participant
  • Joined in 2012
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Request: Power alt-tab
« on: July 02, 2015, 05:58 PM »
Here's something I found myself needing many times over the years. (Working on Windows 7 here.)

Sometimes I'll be working on my computer and having many windows open. So I use Alt-Tab to navigate between them. But the annoying thing is that sometimes Windows has windows that don't show up on alt-tab, like small dialogs. For example, try opening a folder in windows, selecting a file and pressing the Del button. Windows shows a dialog to delete the file. Now, say you've already switched to a different window and you have a mess of windows covering that delete dialog. Now say you want to navigate back to it. You try using alt-tab, but that delete dialog doesn't appear in the alt-tab window list!

My idea: A program that listens for win-alt-tab and shows an alt-tab window that scrolls through all those windows that aren't on the original alt-tab list. That way I could get to them without having to use the mouse and search for them visually.

If anyone feels like taking up this challenge, please let me know!


Thanks,
Ram.

MilesAhead

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 7,736
    • View Profile
    • Donate to Member
Re: Request: Power alt-tab
« Reply #1 on: July 02, 2015, 06:34 PM »
I don't have exactly what you want.  But in your example you could Control right click on the dialog to make it Topmost.  Topmost Toggle also has Alt Tab visibility toggle.  But it only works on Windows that can have a Maximize Box.  It toggles PopUp Window/Toolbar window style.

You can get Topmost Toggle on my page of free Windows Downloads:
http://milesaheadsoftware.org


tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: Request: Power alt-tab
« Reply #2 on: July 02, 2015, 06:41 PM »
I think this one might do the job - if you follow the link [edit] you'll get a 404 in the end :-/ I'll check tomorrow to see if I still have a copy of it [/edit] you'll see it was last updated 2013 (I think).

also try this alternative Alt-Tab replacement, coded in Autohotkey.



IIRC, I didnt use it for long because it showed too much stuff...


[edit] unfortunately I dont have a copy of that - maybe lanux128 or someone else might (?) - will attach to next post - at a quick look, it works fine here on Win7. I can see a settings tab in my version, but could not figure out how to access it. [/edit]
Tom
« Last Edit: July 03, 2015, 04:57 AM by tomos »

tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: Request: Power alt-tab
« Reply #3 on: July 03, 2015, 05:07 AM »
Sorry for the flurry of edits to previous post:

attached below is the file AltTab.AHK - as shown in screenshot above, but a more recent version.

Screenshot - 2015-07-03 , 12_03_30.png

Note:
# it misses my open Screenshot Captor window.
# I cannot figure out how to access the settings tab
# it is not showing in the tray here (AHK scripts normally do)

I havent explored the context menu (as shown in previous post - you can access and modify hotkeys from there.

(Win 7 x64)
Tom

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: Request: Power alt-tab
« Reply #4 on: July 03, 2015, 07:59 AM »
Note:
# it misses my open Screenshot Captor window.
# I cannot figure out how to access the settings tab
# it is not showing in the tray here (AHK scripts normally do)

@tomos: this is a very good ahk script. i had used this for quite some time.

as for the notes:
item #1: that has something to do with SC itself. i have highlighted this to mouser.

unfortunately the settings tab is incomplete but you can edit the script and change manually starting from line 80 onwards. you can also view the "Alt_Tab_Settings.ini" which is created by the script.
also if you don't let go of the Alt key when you press Alt+Tab, you can access more settings by right-clicking on the list-view (as can be seen from the screenshot that I had posted).

for item #3, you have comment line 149 by adding a ;  e.g. ;#NoTrayIcon and reload the script.

hope this helps.

tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: Request: Power alt-tab
« Reply #5 on: July 03, 2015, 08:59 AM »
^ many thanks for those tips lanux :up:

item #1: that has something to do with SC itself. i have highlighted this to mouser
that could well be the case,
but the main Screenshot Captor window does show in the regular Alt-Tab (and does not show in the AHK script version of AltTab).

I do remember there being some problem alright with SC though :-\
was it that it disappeared from Alt-Tab when a dialogue (e.g. preferences) was open?
Tom

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: Request: Power alt-tab
« Reply #6 on: July 03, 2015, 09:20 AM »
that could well be the case,
but the main Screenshot Captor window does show in the regular Alt-Tab (and does not show in the AHK script version of AltTab).

I do remember there being some problem alright with SC though :-\
was it that it disappeared from Alt-Tab when a dialogue (e.g. preferences) was open?

on my Win7 (x64), SC icon disappears from the taskbar when it goes behind other windows and also when I move the main window from one monitor to another. I bet mouser will have a look into this soon, now that his cabinet project has been successfully completed.

cool-RR

  • Participant
  • Joined in 2012
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Re: Request: Power alt-tab
« Reply #7 on: July 04, 2015, 02:53 AM »
That works! Thanks everybody!