Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Windows Explorer and the backspace issue

Reply
Thread Tools Display Modes

Windows Explorer and the backspace issue

 
 
Patrick Bandorf
Guest
Posts: n/a

 
      08-26-2007
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

 
Reply With Quote
 
 
 
 
Peter Foldes
Guest
Posts: n/a

 
      08-26-2007
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" <> wrote in message news: ups.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
>

 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
backspace key lizzie Windows Vista General Discussion 8 12-30-2007 11:28 AM
File Copy and Paste issue - Windows Explorer Woblit Windows Vista General Discussion 9 04-17-2007 11:42 AM
Re: Windows Explorer Issue Chad Harris Windows Vista General Discussion 0 01-09-2007 03:20 PM
Re: Windows Explorer Issue Richard Urban Windows Vista General Discussion 0 01-09-2007 03:06 PM
Re: Windows Explorer Issue Troy McClure Windows Vista General Discussion 0 01-09-2007 02:50 PM



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 47 48 49 50 51 52 53 54 55 56 57 58 59