일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Var:=식
- if(식)
- SetEnv
- EnvMult
- EnvAdd
- EnvSet
- IfWinExist
- EnvSub
- SetMouseDelay
- SetKeyDelay
- SetTitleMatchMode
- 함수
- autohotkey
- IfInString
- MouseClick
- Threads
- ControlSend
- StringGetPos
- IF (식)
- Blocks
- Menu
- 식의 설명
- 식
- API
- SetControlDelay
- DetectHiddenWindows
- if
- 배열
- ControlGetText
- Today
- Total
목록전체 글 (852)
ㄴrㅎnㅂrㄹrㄱi
비트를 지정 자리수왼쪽으로 시프트 하는 연산자Expression1Parameters인수명설명Expression1임의의 식Expression2시프트 시키는 자리수Remarks비트 연산 할 수 있는 것은 정수치만.소수치는, 정수치로 변환하고 나서 계산된다.내부적으로는64비트 부호 첨부 정수로 다루어지고 있는 모양.부호 첨부64비트 정수의 범위(-9223372036854775808..9223372036854775807)의 범위에 들어가지 않는 경우,65비트째부터 위는 잘라 버릴 수 있다. Related식, if(식), Var:=식
++/--연산자 변수의 값을1늘린다/1줄인다Var++ Var-- ++Var --Var Parameters 인수명 설명 Var 대상이 되는 변수명 Remarks 「var++」(와)과 같이, 변수명의 뒤에 연산자가 오는 경우, 식 전체의 값은 연산전의 변수의 값이 된다. 「++var」(와)과 같이, 변수명의 전에 연산자가 오는 경우, 식 전체의 값은 연산 후의 변수의 값이 된다. 아래와 같은 예에서는, 순서에 「1」 「2」 「2/2」라고 표시된다. x:=y:=1 MsgBox,% x++ MsgBox,% ++y MsgBox,%x%/%y% 「var++」(이)나 「var--」의 형식의 연산만의 행은, EnvAdd(이)나 EnvSub커멘드의 별형식으로 간주해진다. 이 경우,var의 값이 수치로서 올바르지 않은 문자열..
>= 연산자(이상) 왼쪽의 식이 오른쪽의 식 이상의 크기라면 실로 되는 연산자Expression1>=Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks 수치가 아닌 것을 비교하는 경우, 문자열로서 문자 코드의 줄 순서로 비교된다. 수치여도, 「"」(으)로 둘러싸여 있는 경우는, 문자열로 간주해진다.(례:「"10"」) 문자열 비교시는, StringCaseSense커멘드로 설정이 변경되지 않는 이상 대문자 소문자의 차이는 무시된다.(「=」 「==」(을)를 제외한다) 결과는, 가짜(False)의 경우 「0」, 진(True)의 경우 「1」가 된다. Related 식, if(식), Var:=식
> 연산자(대든지) 왼쪽의 식이 크면 실로 되는 연산자Expression1>Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks Expression1하지만Expression2보다 크면 실로 된다. 수치가 아닌 것을 비교하는 경우, 문자열로서 문자 코드의 줄 순서로 비교된다. 수치여도, 「"」(으)로 둘러싸여 있는 경우는, 문자열로 간주해진다.(례:「"10"」) 문자열 비교시는, StringCaseSense커멘드로 설정이 변경되지 않는 이상 대문자 소문자의 차이는 무시된다.(「=」 「==」(을)를 제외한다) 결과는, 가짜(False)의 경우 「0」, 진(True)의 경우 「1」가 된다. Related 식, if(식), Var:=식
== 연산자(등치) 좌우의 식이 같은 값이라면 실로 되는 연산자(문자열의 대문자 소문자를 구별)Expression1==Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks 수치가 아닌 것을 비교하는 경우, 문자열로서 문자 코드의 줄 순서로 비교된다. 수치여도, 「"」(으)로 둘러싸여 있는 경우는, 문자열로 간주해진다.(례:「"10"」) 대문자 소문자의 차이는, 항상 구별된다. 결과는, 가짜(False)의 경우 「0」, 진(True)의 경우 「1」가 된다. Related 식, if(식), Var:=식
= 연산자(대문자 소문자 무시의 등치) 좌우의 식이 같은 값이라면 실로 되는 연산자(문자열의 대문자 소문자를 무시)Expression1=Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks 수치가 아닌 것을 비교하는 경우, 문자열로서 문자 코드의 줄 순서로 비교된다. 수치여도, 「"」(으)로 둘러싸여 있는 경우는, 문자열로 간주해진다.(례:「"10"」) 대문자 소문자의 차이는, 항상 무시된다. 결과는, 가짜(False)의 경우 「0」, 진(True)의 경우 「1」가 된다. Related 식, if(식), Var:=식
// 연산자(결론 짓지 않는 제산) 2개의 식의 상을 돌려주는 연산자Expression1//Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Remarks 예를 들어, 「7//3」(은)는2에, 「7//-3」(은)는-2(이)가 된다. 몇개의 피연산자가 소수 표현이었던 경우, 소수로서 제산한 상을 넘지 않는 최대의 정수에 말 수 있다.또, 이 경우 결과는 소수 표현이 된다.(「7//3.0」(은)는2.0, 「7//-3.0」(은)는-3.0(이)가 된다) Related 식, if(식), Var:=식
/ 연산자(제산) 2개의 식의 상을 돌려주는 연산자Expression1/Expression2 Parameters 인수명 설명 Expression1 임의의 식 Expression2 임의의 식 Related 식, if(식), Var:=식
?:연산자(조건) 조건식이 실로 될 때라고 가짜가 될 때로 다른 식을 평가한다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..