Page 1 of 1

Starting XYplorer using WinKey+X with AutoHotKey

Posted: 07 Jul 2006 09:09
by admin
This AutoHotKey script launches, or opens XYplorer on WinKey-X:

Code: Select all

#x::
   IfWinNotExist, ahk_class ThunderRT5Form
     Run, %ProgramFiles%\xyplorer\xyplorer.exe, %ProgramFiles%\xyplorer
     WinWait, ahk_class ThunderRT5Form
   WinActivate
   Return
(by user Gordon McKinney)