일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IfWinExist
- Blocks
- ControlGetText
- API
- EnvSub
- IfInString
- SetTitleMatchMode
- Threads
- 식
- EnvMult
- 식의 설명
- StringGetPos
- SetControlDelay
- SetMouseDelay
- if
- EnvAdd
- ControlSend
- 배열
- if(식)
- Menu
- SetKeyDelay
- IF (식)
- MouseClick
- 함수
- EnvDiv
- SetEnv
- EnvSet
- DetectHiddenWindows
- Var:=식
- autohotkey
- Today
- Total
목록AUTOHOTKEY/레퍼런스 (362)
ㄴrㅎnㅂrㄹrㄱi
;************************************************************** ;******* Function collection for AHK by Rubberduck ************ ;************************************************************** ;******* sorted alphabetically ******************************** ;**** Function Abs(In_Val) ;**** negative In_Values are returned positive -5 => 5 Abs(In_Val) { local Ret_Val Transform, Ret_Val, Abs, %In_Val..
As I posted on another thread, I have always wanted to write code to automaticlly encode and decode Lewis Carroll's Cipher. I finally finished it and thought I would share. (I didn't check to see if it was already done, it would have burst my bubble.... ) I took the ideas/suggestions from some other threads to enable the user to change the limits (what characters are legal) and wrote 4 options i..
Only for AutoIt v2 (.aut) scripts: Allows a comment to appear on the same line as a command. #AllowSameLineComments Specifying this directive at the top of any AutoIt v2 (.aut) script will enable the use of same-line comments, which are normally disabled for compatibility reasons. If not used at the top of the script, same-line comments are not supported above the point where the directive occur..
Creating a Keyboard Macro or Mouse Macro A macro is a series of scripted actions that is "played" upon demand. The most common activity of a macro is to send simulated keystrokes and mouse clicks to one or more windows. Such windows respond to each keystroke and mouse click as though you had performed it manually, which allows repetitive tasks to be automated with high speed and reliability. Alt..
Click mouse button의 클릭/밀기 인하/인상등의 조작을 발생시킨다 Click[, Button, up/down, x, y, count, rel] Parameters 인수명 설명 Button 어느 버튼을 조작할까 LEFT 왼쪽 버튼(디폴트) RIGHT 오른쪽 버튼 MIDDLE 중앙 버튼(휠) WheelUp 휠을 상 회전(Windows2000/XP전용) WheelDown 휠을 하 회전(Windows2000/XP전용) X1 확장 버튼(Windows2000/XP전용) X2 확장 버튼(Windows2000/XP전용) 「L」 「R」 「M」 「WU」 「WD」라고 하는 생략형에서도 지정 가능. up/down 「Down」(이)나 「D」(을)를 지정하면, 버튼을 눌러 내려 만 해 떼어 놓지 않는다. 「Up」(이..
My Scripts 관리인이 작성한 스크립트를 공개하고 있습니다. 특히 거절이 없을 따름, 최신판의AutoHotkey+WindowsXP(으)로의 동작을 상정하고 있습니다.WindowsNT/2000그렇지만 동작할지도 모릅니다. 이러한 스크립트를 사용한 결과 어떠한 문제가 발생해도, 관리인은 일절의 책임을 지지 않습니다. 특히 기술이 없는 한, 라이센스는 NYSL입니다. 모듈류 ActiveX WSH등으로 사용된다ActiveXObject(을)를 취급할 수 있도록(듯이) 한다 BREGEXP BREGEXP.DLL(을)를 이용해 정규 표현 검색·치환을 실시하는 함수군 migemo migemo.dll(와)과 BREGEXP.DLL(을)를 이용해 로마자와 읽기의 매칭을 실시하는 함수군 프로세스메모리 읽고 쓰기 PID그리..
|| 연산자(논리합) 2개의 식의 논리합의 진위치를 돌려주는 연산자Expression1||Expression2 Expression1 OR Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks Expression1(와)과Expression2의 양쪽 모두가 가짜라면 결과는 가짜에, 언젠가 혹은 양쪽 모두가 진이라면 결과는 실로 된다. 수치의 제로나 하늘의 문자열은 가짜(False)(으)로서 다루어져 그 이외는 진(True)(으)로서 다루어진다. 논리 연산의 결과는, 가짜(False)의 경우 「0」, 진(True)의 경우 「1」가 된다. Related 식, if(식), Var:=식
WinMenuSelectItem 지정 윈도우의 도구모음의 커멘드를 실행한다WinMenuSelectItem, WinTitle, WinText, Menu [, SubMenu1, SubMenu2, SubMenu3, SubMenu4, SubMenu5, SubMenu6, ExcludeTitle, ExcludeText] Parameters 인수명 설명 WinTitle 윈도우 타이틀 등. 윈도우 지정의 방법참조. WinText 윈도우에 포함되는 텍스트 Menu 최상위의 메뉴명.「파일(F)」 등. 「1&」(와)과 같이 하고, 항목의 위치에서 지정하는 일도 가능.(단락선도 수에 센다) SubMenu1...SubMenu6 부메뉴의 메뉴명. ExcludeTitle 제외 타이틀 ExcludeText 제외 텍스트 ErrorLe..