일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- if(식)
- 배열
- 함수
- StringGetPos
- MouseClick
- IF (식)
- Blocks
- SetTitleMatchMode
- DetectHiddenWindows
- EnvSub
- EnvSet
- if
- 식의 설명
- Menu
- EnvMult
- 식
- ControlSend
- EnvDiv
- SetMouseDelay
- SetEnv
- autohotkey
- IfWinExist
- SetKeyDelay
- SetControlDelay
- ControlGetText
- EnvAdd
- Threads
- API
- IfInString
- Var:=식
- Today
- Total
목록Nimto Free style (852)
ㄴrㅎnㅂrㄹrㄱi
?:연산자(조건) 조건식이 실로 될 때라고 가짜가 될 때로 다른 식을 평가한다Condition ? ExpressionA : ExpressionB Parameters 인수명 설명 Condition 조건식 ExpressionA condition하지만 진정한 때에 평가되는 식 ExpressionB condition하지만 가짜 풀어에 평가되는 식 Remarks 우선Condition하지만 평가되어 진이었던 경우는ExpressionA하지만, 가짜였던 경우는ExpressionB하지만 평가된다. 식 전체의 값은,ExpressionA혹은ExpressionB의 값이 된다. 「flag ? "flag is on" :」(이)나 「flag ? : "flag is off"」(와)과 같이,ExpressionA(이)나Expressio..
. 연산자(문자열 연결) 2개의 식을 문자열로서 연결하는 연산자Expression1 . Expression2 Expression1 Expression2 Remarks Exp1(와)과 「.」, 「.」라고Exp2의 사이에는 반각 스페이스를 비우지 않으면 안 된다. Expression2하지만 「++」(이)나 「--」연산자로 시작되는 경우를 제외해, 단지2개의 식을 반각 스페이스에서 단락짓고 써도 괜찮다. Related 식, if(식), Var:=식
,연산자(복식) 복수의 식을 순서에 평가한다ExpressionA , ExpressionB Parameters 인수명 설명 ExpressionA 최초로 실행하는 식 ExpressionB 다음에 실행하는 식 Remarks 콤마로 단락지어진 복수의 식은, 왼쪽에서 차례로 평가된다. 식 전체의 값은, 제일 왼쪽의 식의 값이 된다. 콤마의 뒤에 변수명과 「=」(이)가 계속 되는 경우, 「:=」와 같은 대입 연산자로 간주해진다. 단순한 대입 등은, 복수행으로 나누고 쓰는 것보다, 콤마 단락으로1행으로 정리하는 것이, 약간 고속으로 동작한다. Related 식
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..