일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DetectHiddenWindows
- ControlGetText
- IF (식)
- EnvDiv
- 배열
- SetKeyDelay
- Threads
- 함수
- Blocks
- SetEnv
- MouseClick
- EnvMult
- 식
- EnvAdd
- 식의 설명
- EnvSet
- StringGetPos
- if
- SetControlDelay
- ControlSend
- autohotkey
- SetTitleMatchMode
- Menu
- API
- EnvSub
- Var:=식
- IfInString
- if(식)
- SetMouseDelay
- IfWinExist
- Today
- Total
목록2007/11/04 (26)
ㄴrㅎnㅂrㄹrㄱi

Description: It's a small BBCode Editor that lets you write a forum posting offline including all bbcode formatting options. Other features: Save and load your postings. Resizable GUI. Add signatures to your postings. (possible workaround for 255 char limit within some boards.) Supports language english/german via Ini file. Create your own language file and simply copy it to the 'lang' subfolder..
The following script: - Checks the latest version of ahk installation from web - Let you select web or local ahk installation file - Shows download progress while file is being downloaded. - Backs up registry entries for Compiler/Editor etc. of AHK scripts - Exits all running uncompiled ahk scripts (asks you to confirm this step) - Runs installation and automates the process - Loads back old reg..
Hello, I found an interesting script SQlite.au3 at http://www.autoitscript.com/forum/index.php?showtopic=17099 and thought it could be interesting for the AHK community too. So I tried a "translation" and now in my opinion the important functions are realized and raw tested. I'll try to use for some productive tool, but I'd want some others to test it too and give response for missing functions ..
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..
{...} (block) 조건 분기나 루프내에서 복수의 커멘드를 실행하기 위해서 블록화한다{ zero or more commands } Remarks 블록내에는1개도 커멘드가 없어도 좋다. 「 If(식)」, 「 Loop,회수」, 「 else」, 함수 정의그럼, 행의 마지막에 「{」(을)를 정리하고 쓸 수 있다. 또, 「}」의 후에 「else」(을)를 정리하고 쓸 수 있다. 상기 이외의If계,Loop계 커멘드에서는, 「{」(은)는 커멘드행의 다음의 행에 쓸 필요가 있다. Related Loop, Else, If Example(s)if (x < y) { MsgBox,x=y } Loop 3 { MsgBox,%A_Index%번째 } Add(x, y) { return x + y } if x = 1 { MsgBox..
^ 연산자(비트 배타적 논리합) 2개의 식의 비트마다의 배타적 논리합을 요구하는 연산자Expression1&Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks 결과는,Expression1,Expression2의 양쪽 모두가 같은 비트는은0에, 다른 한쪽이0그리고 다른 한쪽이1의 비트는1(이)가 된다. 비트 연산 할 수 있는 것은 정수치만. 소수치는, 정수치로 변환하고 나서 계산된다. 내부적으로는64비트 부호 첨부 정수로 다루어지고 있는 모양.부호 첨부64비트 정수의 범위(-9223372036854775808..9223372036854775807)의 범위에 들어가지 않는 경우,65비트째부터 위는 잘라 버릴 수 있다. Relat..
| 연산자(비트 논리합) 2개의 식의 비트마다의 논리합을 요구하는 연산자Expression1|Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks 결과는,Expression1,Expression2의 양쪽 모두가0의 비트는0에, 어느 쪽인지 혹은 양쪽 모두가1의 비트는1(이)가 된다. 비트 연산 할 수 있는 것은 정수치만. 소수치는, 정수치로 변환하고 나서 계산된다. 내부적으로는64비트 부호 첨부 정수로 다루어지고 있는 모양.부호 첨부64비트 정수의 범위(-9223372036854775808..9223372036854775807)의 범위에 들어가지 않는 경우,65비트째부터 위는 잘라 버릴 수 있다. Related 식, if(식)..
~ 연산자(비트 반전) 식을 정수로서 비트 반전하는 연산자~Expression Parameters 인수명 설명 Expression 임의의 식 Remarks 32비트 부호 없음 정수의 범위내의 값은, 하위32비트만 반전된다.(부의 값의 경우,32비트에서도64비트에서도 결과는 같다) 비트 연산 할 수 있는 것은 정수치만. 소수치는, 정수치로 변환하고 나서 계산된다. 내부적으로는64비트 부호 첨부 정수로 다루어지고 있는 모양.부호 첨부64비트 정수의 범위(-9223372036854775808..9223372036854775807)의 범위에 들어가지 않는 경우,65비트째부터 위는 잘라 버릴 수 있다. Related 식, if(식), Var:=식