일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ControlSend
- SetMouseDelay
- SetKeyDelay
- Menu
- EnvSub
- EnvSet
- 식
- IfWinExist
- Threads
- Var:=식
- SetControlDelay
- EnvAdd
- EnvMult
- StringGetPos
- Blocks
- API
- DetectHiddenWindows
- IfInString
- 함수
- ControlGetText
- 배열
- 식의 설명
- if
- IF (식)
- SetEnv
- EnvDiv
- MouseClick
- autohotkey
- if(식)
- SetTitleMatchMode
- Today
- Total
목록AUTOHOTKEY/스크립트 (38)
ㄴrㅎnㅂrㄹrㄱi
;------------------------------------------------------------- ; 숫자에 컴마 찍기 ;------------------------------------------------------------- FormatNumber(_number) { StringReplace _number, _number, - IfEqual ErrorLevel,0, SetEnv Sign,- Loop Parse, _number, . If (A_Index = 1) { len := StrLen(A_LoopField) Loop Parse, A_LoopField If (Mod(len-A_Index,3) = 0 and A_Index != len) x = %x%%A_LoopField%, Else..
Even after tooltips and traytips I find myself using SplashText sometimes. Traytips are always in short supply, no matter how many apps try, only one can use it at a time. And SplashText is always more attention grabbing than Tooltips. But its usually a pain to use trial & error for sizing it just right, as it doesn't auto-size itself like tool/tray tips. Use this script to put in Title and Text..
If you remember my SplashImage Sizer script here, then you'll know what this one is about. Accept it! ..Splash windows look cool, and are useful too. But sizing them right to fit the maintexts, subtexts, images etc. and then making them look good is time consuming... so here's something to help u. Use this script to put in Text for Splash and size it using arrow keys... and when u get it right, ..
Due to your great support, my first script is now ready. Thank you guys. ; --------------------------------------------------------------------- ; Name: HotString GUI v0.2 ; Author: mallow ; Datum: 31.01.2005 ; ; Language: german/english ; Platform: tested with XP ; AutoHotkey Ver.: 1.0.25.10+ ; ; Description: ; With this script HotStrings can be managed via a GUI ; http://www.autohotkey.com/for..
이 간단한 예제 함수를 게재합니다 유용한 도구에 대한 통제 아래에 마우스 커서를 구성할 수있습니다. TargetWin = Test Window ; Generated using SmartGUI Creator 3.4 Gui, Add, Button, x16 y17 w60 h30, Button Gui, Add, Checkbox, x16 y57 w70 h30, Checkbox Gui, Add, Edit, x116 y17 w140 h70, Edit Gui, Show, x158 y318 h103 w269, %TargetWin% SetTimer, Tip, 2000 Return GuiClose: ExitApp Tip: IfWinNotActive, %TargetWin% { ToolTip Return } MouseGetPo..
This script will reveal information on windows, controls, etc. It is made public under the Attribution-NonCommercial-ShareAlike 2.5 licence from Creative Commons it requires the latest AHK version. ScreenShots of the 5 tabs (Version 1.4): A larger list (which can be activated on the advanced tab) shows more data: - a list of all controls and their properties of the window in question - a list of..