AutoHotkey: Go To Parent Directory When Doubleclicking Border: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
(Link to another "german" page...)
(Undo revision 7334 by GammelBert (Talk))
 
(3 intermediate revisions by 3 users not shown)
Line 29: Line 29:
  Return
  Return


<BR>
----
<BR> Back to [[AutoHotkey]]<BR>


Back to [[AutoHotkey]]


[[de:AutoHotkey: Go To Parent Directory When Doubleclicking Border]]
[[Category:AutoHotkey scripts|Go To Parent Directory When Doubleclicking Border]]
[[de:AutoHotkey: Mit Doppelklick auf den Bildschirmrand ins übergeordnete Verzeichnis wechseln]]

Latest revision as of 02:45, 1 August 2011

Doubleclicking the left/right border when TC is maximized enters the corresponding parent directory. A neat side effect is that single clicking a border already activates the panel.

RegRead, DoubleClickSpeed, HKEY_CURRENT_USER, Control Panel\Mouse, DoubleClickSpeed
If DoubleClickSpeed =
  DoubleClickSpeed = 500

~LButton::
IfWinActive, ahk_class TTOTAL_CMD
{
  If A_TimeSinceThisHotkey >= %DoubleClickSpeed%
    ClickCount = 0
  MouseGetPos, xcoordinate
  If xcoordinate = 4
  {
    ClickCount++
    PostMessage 1075, 4001, , , ahk_class TTOTAL_CMD
  }
  If (xcoordinate = A_ScreenWidth+3)
  {
    ClickCount++
    PostMessage 1075, 4002, , , ahk_class TTOTAL_CMD
  }
  If ClickCount = 2
  {
    PostMessage 1075, 2002, , , ahk_class TTOTAL_CMD
    ClickCount = 0
  }
}
Return




Back to AutoHotkey