Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Newsgroups > Vista General

Vista - Windows Explorer and the backspace issue

Reply
 
Old 08-26-2007   #1 (permalink)
Patrick Bandorf


 
 

Windows Explorer and the backspace issue

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


My System SpecsSystem Spec
Old 08-26-2007   #2 (permalink)
Peter Foldes


 
 

Re: Windows Explorer and the backspace issue

Patrick

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

news://msnews.microsoft.com/microsof...rver.scripting


--
Peter

Please Reply to Newsgroup for the benefit of others
Requests for assistance by email can not and will not be acknowledged.

"Patrick Bandorf" <garfield.catnet@googlemail.com> wrote in message news:1188122422.095638.251920@57g2000hsv.googlegroups.com...
> 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
>

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Windows Explorer Window Sizing Issue Vista General
backspace key Vista General
Backspace, Alt-up and Vista Vista General
File Copy and Paste issue - Windows Explorer Vista General
Windows Explorer Issue Vista General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46