1

Just a quick one I hope -- is there any way in Windows to make alt-tab behave like win-tab? I've poked and googled and not found anything, so assuming there isn't ... but if anyone knows of a way, that'd be fantastic.

I'm suspecting the answer is nay and external software like AutoHotkey required to do the mapping instead.

1
  • Yes, I believe external software is required - it's a lot more difficult to change default keyboard shortcuts in Windows than it is in most GNU/Linux distributions - I've been using Windows as my main OS for years and don't think it's possible, and I just started looking into GNU/Linux and know how already.
    – Daniel H
    Commented Dec 10, 2009 at 21:27

3 Answers 3

1

See http://www.autohotkey.com/forum/post-386639.html#386639 and x79animal's solution:

$*Tab:: 
Getkeystate, Laltstate, Lalt, P 
if Laltstate = D 
Send {LAlt up}{LWin down}{Tab} 
else 
Send {Tab} 
return 

~$*LAlt up::Send {Lwin up} 

Worked for me! PHew

2

AutoHotKey is going to be your best and easiest bet.

1
1

Yes (at least on XP, I can't test on Vista or 7, although I'd be interested to know if this works before I upgrade)

I wanted the opposite of your request i.e. Win-Tab (aka Cmd-Tab) to function as Alt-Tab. Phoshi's answer doesn't work for me, so I've added what does and also how to do what you originally asked

make alt-tab behave like win-tab

Here you go:

LAlt & Tab::Send #{Tab} ; this will make Alt-Tab function as Win-Tab

And the opposite:

LWin & Tab::AltTab ; this will make Win-Tab function as Alt-Tab

I haven't worked out ShiftAltTab or ShiftWinTab yet, but I don't use them as I tend to only switch between the current and last app in this way. I use Launchy on Windows and QuickSilver on the Mac for switching between many applications.

1
  • That kinda works. But it's unpredictable. I either get flip-3d properly, flip-3d briefly (i.e., I press alt-tab, it gives me a quick glimpse of flip-3d before giving me back my desktop); the standard alt-tab with the preview windows or the classic alt-tab which gives you the app icons (a la WinXP). So - close, but no cigar I'm afraid :-/
    – Callie J
    Commented Jul 7, 2010 at 23:03

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .