반응형
Recent Posts
Recent Comments
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 식의 설명
- EnvSet
- Blocks
- 함수
- IfWinExist
- EnvSub
- autohotkey
- DetectHiddenWindows
- SetEnv
- EnvAdd
- SetControlDelay
- ControlGetText
- SetKeyDelay
- IfInString
- SetMouseDelay
- if(식)
- EnvMult
- Threads
- SetTitleMatchMode
- ControlSend
- Menu
- StringGetPos
- IF (식)
- Var:=식
- EnvDiv
- 배열
- 식
- if
- MouseClick
- API
Archives
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
사이드바 본문
반응형
http://www.autohotkey.com/board/topic/88131-hilfe-f%C3%BCr-sidebar-gesucht/?hl=shell.explorer
좌측에 사이드바를 만든다.
마우스를 1 초 이상 대고 있으면 사이드가바 나타난다.
#NoEnv
#SingleInstance force
DetectHiddenWindows, On
CoordMode, Mouse, Screen
H1:=A_ScreenHeight-60
Time1=400
Time2=400
OnExit,EX
gui +lastfound
GUIID := WinExist()
Gui,margin,5,10
Gui,Color,000000,FFFFAA
Gui,-Caption +ToolWindow + E0x200 -resize +AlwaysOnTop
Gui,add,ActiveX,x0 y5 w180 h%H1% vEXPLORER,Shell.Explorer
Gui,Add,Edit,x0 y+5 w180 vEDIT, ; <<<< Eingabe für die Suche mit "Everything"
Gui,Add,Button,x0 y+5 w180 vEX gEX default,exit
IfNotExist,C:\0000gero000 ; ; <<<< anfangs ein leerer Ordner im Irgendwo
FileCreateDir,C:\0000gero000
EXPLORER.navigate("C:\0000gero000")
Gui,show,x0 y0 h%A_ScreenHeight% hide ,SideBar
SetTimer,TIMER,1000
return
TIMER:
Control,Hide,,SysHeader321,Ahk_ID %GUIID% ; macht den Explorer-Header weg (kommt mitunter wieder)
MouseGetPos,XX
IF (XX < 2 )
{
sleep 500
MouseGetPos,XX
IF (XX < 2)
{
DllCall("AnimateWindow", "UInt", GUIID, "Int", Time1, "UInt", +0x40001 +0x20000)
Loop
{
MouseGetPos,,,WINDOW
IF WINDOW != %GUIID%
{
DllCall("AnimateWindow", "UInt", GuiID, "Int", Time2, "UInt", +0x40002 +0x10000)
break
}
sleep 50
}
}
}
return
EX:
GuiClose:
DllCall("AnimateWindow", "UInt", GuiID, "Int", Time2, "UInt", 0x90000)
Exitapp
return
반응형
'AUTOHOTKEY > 유틸리티' 카테고리의 다른 글
| Macro Creator v3.24 - Automation Tool (Recorder & Writer) (0) | 2013.01.15 |
|---|---|
| SciTE4AutoHotkey v3.0.01.01 (0) | 2013.01.15 |
| Gui Colour Dialogue without dlls (0) | 2013.01.15 |
| 에디트플러스에서 오토핫키를 이용한 ioncube 파일별 컴파일러 (0) | 2012.08.08 |
| 폴더 탐색기 (0) | 2012.03.08 |
Comments