Autohotkey

From Attie's Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "==Fix Explorer 'up' backspace button== <source lang="text"> #IfWinActive, ahk_class CabinetWClass Backspace:: ControlGet renamestatus,Visible,,Edit1,A ControlGetFocus fo...")

Revision as of 15:00, 6 July 2012

Fix Explorer 'up' backspace button

#IfWinActive, ahk_class CabinetWClass
Backspace::
   ControlGet renamestatus,Visible,,Edit1,A
   ControlGetFocus focussed, A
   if(renamestatus!=1&&(focussed=”DirectUIHWND3″||focussed=SysTreeView321))
   {
    SendInput {Alt Down}{Up}{Alt Up}
  }else{
      Send {Backspace}
  }
#IfWinActive
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox