일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IfInString
- ControlGetText
- if
- Menu
- ControlSend
- if(식)
- IfWinExist
- Var:=식
- EnvSet
- MouseClick
- StringGetPos
- EnvDiv
- EnvAdd
- EnvMult
- 함수
- API
- 식의 설명
- Threads
- autohotkey
- SetKeyDelay
- 배열
- SetTitleMatchMode
- SetControlDelay
- 식
- IF (식)
- SetEnv
- EnvSub
- DetectHiddenWindows
- SetMouseDelay
- Blocks
- Today
- Total
목록AUTOHOTKEY/스크립트 (38)
ㄴrㅎnㅂrㄹrㄱi
XML Reader 2.0 XPath - read and write XML documents with XPath 2.0 syntax XML Writer ;------------------------------------------------------------- ; XML 파싱 ;------------------------------------------------------------- XMLRead(source, tree, default = "") { ; v2.05 - by Titan If source is integer { DllCall("SetFilePointer", "UInt", source, "UInt", 0, "UInt", 0, "UInt", 0) s := VarSetCapacity(c, ..
http://www.autohotkey.com/forum/topic16565.html&postdays=0&postorder=asc&highlight=file+upload&start=45
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 ..
/* 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 ..
http://www.autohotkey.com/board/index.php?app=core&module=search&do=search&fromMainBar=1 StringCaseSense On Chars = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ gui, add, button, w100 gOpen,Open File gui, add, text, x+10,var name: gui, add, edit, x+10 w100 vName,File gui, add, text, x+10,extract to: gui, add, edit, x+10 w100 vwriteto,file.ext gui, add, edit, r40 w510 vOutput ..
passwd = "1334512345" ; 암호 Data = "codedata:http://infoki.net" ; 암호화 코드 Crypt_string := Crypt(Data, passwd) MsgBox, %Crypt_string% ; 암호화된 문자 Decrypt_string := Decrypt(Data, Crypt_string) MsgBox, %Decrypt_string% ; 암호 해독된 문자 ;------------------------------------------------------------- ; 암호 인코드 디코드 ;------------------------------------------------------------- Crypt(Data,_string) { local f, r f ..