일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- EnvDiv
- EnvAdd
- EnvMult
- ControlSend
- Menu
- SetMouseDelay
- MouseClick
- 식의 설명
- autohotkey
- Blocks
- IfInString
- StringGetPos
- 배열
- if(식)
- Var:=식
- EnvSet
- 식
- API
- EnvSub
- if
- SetTitleMatchMode
- SetControlDelay
- IF (식)
- Threads
- 함수
- ControlGetText
- SetKeyDelay
- SetEnv
- IfWinExist
- DetectHiddenWindows
- Today
- Total
목록autohotkey (18)
ㄴrㅎnㅂrㄹrㄱi
http://www.autohotkey.com/forum/viewtopic.php?t=6752
There are 156 pages in this category. Command List A AutoTrim B BlockInput Break C Click ClipWait Continue Control ControlClick ControlFocus ControlGet ControlGetFocus ControlGetPos ControlGetText ControlMove ControlSend ControlSetText CoordMode Critical D DetectHiddenText DetectHiddenWindows DllCall Drive DriveGet DriveSpaceFree E Edit Else EnvAdd EnvDiv EnvGet EnvMult EnvSet EnvSub EnvUpdate E..
FavMenu & Menu Editor for Windows XP & 2K http://www.autohotkey.com/forum/topic12412.html&highlight=favorites OVERVIEW FavMenu is Windows OS enhancer and application launcher. It stores information about your favorite folders and executables and let you quickly use your favorites within system dialogs (Open/Save, Browse For Folder, Office2003 dialogs), Console (cmd.exe), Widows Explorer and Tota..
/* http://msdn.microsoft.com/library/en-us/wininet/wininet/ftp_sessions.asp http://msdn.microsoft.com/library/en-us/wininet/wininet/internetopen.asp http://msdn.microsoft.com/library/en-us/wininet/wininet/internetconnect.asp */ FtpCreateDirectory(DirName) { global ic_hInternet r := DllCall("wininetFtpCreateDirectoryA", "uint", ic_hInternet, "str", DirName) If (ErrorLevel != 0 or r = 0) return 0 ..
My Scripts || 연산자(논리합) WinMenuSelectItem Script & Hotkey Performance 색 지정 CLSID일람 Automating Winamp 대입 연산자 대표적인 사용 예 인트러덕션 [그외] 언어 코드 일람 [그외] 윈도우 스타일 일람 KaysKreations [그외] Windows표준 폰트 [그외] 일자 시각 [그외] 배열 [그외] PostMessage/SendMessage관련 Hotstring Remap Overriding or Disabling Hotkeys 키/mouse button명 일람 함수 식 스크립트 SetKeyDelay ErrorLevel Menu Hotkeys 스렛드 편입변수 AutoHotKey 사용방법 WinSetTitle WinSet WinRes..
텍스트 파일 병합 유틸리티 --------------------------------------------------------------------------------- TEXT(텍스트) 전용 파일 병합 유틸리티 입니다. 파일의 갯수를 제한하지 않습니다. 시스템이 요구하는 만큼 작동합니다. 제작자 정보 최호성 (Nimto) nimtos@gmail.com http://www.infoki.net / 탭메뉴 파일병합 : 합쳐질 파일의 목록입니다. 직접 입력도 가능합니다. 실행결과 : 파일의 합쳐진 결과가 표시되는 부분입니다. 도움말 : 현재 보시는 도움말 버튼메뉴 파일 추가 : 병합할 파일을 추가하는 버튼 여러 폴더의 파일을 각각 선택 가능 실행 : 병합을 실행하는 버튼 초기화 : 합쳐진 목록을 지우는 버..
CLSID List (Windows Class Identifiers) Certain special folders within the operating system are identified by unique strings. Some of these strings can be used with FileSelectFile, FileSelectFolder, and Run. For example:FileSelectFile, OutputVar,, ::{645ff040-5081-101b-9f08-00aa002f954e} ; Select a file in the Recycle Bin. FileSelectFolder, OutputVar, ::{20d04fe0-3aea-1069-a2d8-08002b30309d} ; Se..
http://blog.naver.com/jinsoo79/40023480400 .. Win32 API 주요 함수 AdjustWindowRect : BOOL AdjustWindowRect(LPRECT lpRect, DWORD dwStyle, BOOL bMenu); 작업 영역의 크기는 윈도우 크기에서 타이틀 바와 경계선, 메뉴, 스크롤 바 등의 영역을 제외한 영역이다. 일반적으로 MoveWindow, SetWindorPos 등의 함수로 윈도우 크기는 원하는대로 바꿀 수 있지만 작업 영역의 크기를 원하는대로 설정하는 방법은 없다. 작업 영역을 특정한 크기대로 설정하려면 이 함수로 원하는 윈도우 크기를 먼저 계산하고 MoveWindow 등의 함수로 윈도우 크기를 변경해야 한다. 이 함수는 윈도우의 스타일(타이틀 ..