Windows Explorer and the backspace issue

P

Patrick Bandorf

hello to the vista-world,

i installed vista two days ago, and the one thing driving me the most
insane is the backspace-mapping in vista's explorer.

as you all know: microsoft remapped the backspace key in vista's
explorer to perform now "back" instead of "go to parent folder".

i've searched the net for about two hours for a solution but found
nothing.

so i thought some tiome about the problem, and found it being
hardcoded by microsoft, so i went on thinking, and looking for a
solution and came across AutoHotKey (http://www.autohotkey.com/).

i wrote a super-simple script which gave the explorer the xp-hotkey
back. but had some issues.
here is my first script-attempt:
-----
#IfWinActive ahk_class CabinetWClass
Backspace::Send !{Up}
-----
guess what? yes the problem is, if you want to rename a file and type
backspace, this script also sends Alt+Up, which cancels renaming, and
brings you one level up.

finally i decided to make the best of it, and wrote another script:
-----
#IfWinActive ahk_class CabinetWClass
^Backspace::Send !{Up}
-----
this might look the same, but is different...
this time, you have to press CTRL+Backspace (no matter which ctrl)

it isn't the same as in "the better os", but it is a quick fix, and
ctrl+bksp is much easier to reach as alt+up is (ever tried with one
hand?).

if anyone finds some possibility to limit the script to the
"SysListView321"-Class, please send me an email, or post here.

greetings,
garfield
 
P

Peter Foldes

Patrick

Posting this to the microsoft.public.windows.scripting group will get you an answer.

news://msnews.microsoft.com/microsoft.public.windows.server.scripting
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top