ImageSearch
Searches a region of the screen for an image.
지정된 구역에서 이미지를 찾음. (이 기능 맘에 든다.)
웹페이지에서 어떤 배너를 항상 클릭하게 만들고 싶은데 그 위치가 수시로 바뀔 때, 그 배너 이미지를 따로 저장해 놓고, 저장해 놓은 이미지랑 똑같은(혹은 비슷한) 이미지를 화면에서 찾으라고 하면 딱 찾아준다. 와…

IniDelete
Deletes a value from a standard format .ini file.
스탠다드 INI 파일에서 값을 지움.

IniRead
Reads a value from a standard format .ini file.
스탠다드 INI 파일에서 값을 읽음.

IniWrite
Writes a value to a standard format .ini file.
스탠다드 INI 파일에서 값을 씀.

Input
Waits for the user to type a string (not supported on Windows 9x).
사용자가 문자열을 입력할 때까지 기다린다.

InputBox
Displays an input box to ask the user to enter a string.
사용자로부터 문자열 입력을 받기 위한 박스를 띄운다.

KeyHistory
Displays script info and a history of the most recent keystrokes and mouse clicks.
최근 키보드와 마우스 클릭 상태를 보여준다. 키보드 스캔코드와 마우스 좌표 등을 알아낼 때 유용하다.

KeyWait
Waits for a key or mouse/joystick button to be released or pressed down.
키보드나 마우스, 조이스틱 버튼이 눌리거나 떼어지길 기다린다.

LeftClick
[Obsolete -- use MouseClick for greater flexibility]
안쓰이는 명령어. MouseClick을 써라.

LeftClickDrag
[Obsolete -- use MouseClickDrag for greater flexibility]
안쓰이는 명령어. MouseClickDrag를 써라.

ListHotkeys
Displays the hotkeys in use by the current script, whether their subroutines are currently running, and whether or not they use the keyboard or mouse hook.
현재 스크립트에 의해 지정되어 있는 핫키의 상태를 보여준다.

ListLines
Displays the script lines most recently executed.
최근 실행된 스크립트 라인들을 보여준다.

ListVars
Displays the script's variables: their names and current contents.
스크립트에서 사용되는 변수들을 보여준다. 이름이랑 현재 값들…

Loop (normal)
Perform a series of commands repeatedly: either the specified number of times or until break is encountered.
명령들을 반복한다. 횟수를 지정할 수도 있고, 중간에 break로 끊을 수도 있다.

Loop (files & folders)
Retrieves the specified files or folders, one at a time.
지정된 파일이나 폴더를 하나씩 읽어온다.

Loop (parse a string)
Retrieves substrings (fields) from a string, one at a time.
문자열에서 거기 포함된 문자열을 하나씩 읽어온다.

Loop (read file contents)
Retrieves the lines in a text file, one at a time (performs better than FileReadLine).
텍스트 파일을 한 줄씩 읽어온다. (FileReadLine보다 낫다.)

Loop (registry)
Retrieves the contents of the specified registry subkey, one item at a time.
레지스트리 서브키의 값을 하나씩 읽어온다.

Menu
Creates, deletes, modifies and displays menus and menu items. Changes the tray icon and its tooltip. Controls whether the main window of a compiled script can be opened.
GUI에서 쓰는 명령. 메뉴와 메뉴 아이템 가지고 놀기. 트레이 아이콘, 툴팁 바꾸기, 등등.

MouseClick
Clicks or holds down a mouse button, or turns the mouse wheel.
마우스 클릭, 마우스 휠 돌리기. 매우 유용할 것 같음.

MouseClickDrag
Clicks and holds the specified mouse button, moves the mouse to the destination coordinates, then releases the button.
마우스로 드래그하기.

MouseGetPos
Retrieves the current position of the mouse cursor, and optionally which window and control it is hovering over.
마우스 커서의 위치, 커서가 어떤 윈도우, 컨트롤 위에 있는지 알아내기.
Script Showcase(samples)에 보면 Mouse Gestures – by deguix 가 있는데, 마우스 움직임을 감지하여 여러가지 기능을 한다고 합니다. Fingerworks iGesture 기능을 구현한 거죠. 이 함수를 이용했을 겁니다.

MouseMove
Moves the mouse cursor.
마우스 커서 이동시키기.

MsgBox
Displays the specified text in a small window containing one or more buttons (such as Yes and No).
메시지박스 띄우기.

OnExit
Specifies a subroutine to run automatically when the script exits.
스크립트 끝날 때  자동으로 수행할 서브루틴 지정하기.

OnMessage()
Specifies a function to run automatically when the script receives the specified message.
특정 메시지를 받으면 자동으로 수행할 함수 지정하기.

OutputDebug
Sends a string to the debugger (if any) for display.
디버거에 표시할 문자열 보내기.

Pause
Pauses the script's current thread.
스크립트 수행 잠시 멈추기.

PixelGetColor
Retrieves the color of the pixel at the specified x,y screen coordinates.
지정한 좌표의 색깔 알아내기.

PixelSearch
Searches a region of the screen for a pixel of the specified color.
지정된 구역 안에서 어떤 색깔을 가진 점 찾아내기.

PostMessage
Places a message in the message queue of a window or control.
윈도우나 컨트롤의 메시지큐에 메시지 집어넣기.

Process
Performs one of the following operations on a process: checks if it exists; changes its priority; closes it; waits for it to close.
프로세스 가지고 놀기.

Progress
Creates or updates a window containing a progress bar.
프로그레스 바 있는 윈도우 만들거나 업데이트하기.

Random
Generates a pseudo-random number.
난수? 만들기

RegDelete
Deletes a subkey or value from the registry.
레지스트리 서브키 지우기.

RegRead
Reads a value from the registry.
레지스트리 값 읽어오기.

RegWrite
Writes a value to the registry.
레지스트리 값 쓰기.

Reload
Replaces the currently running instance of the script with a new one.
스크립트 다시 실행하기

Repeat¡¦EndRepeat
[Obsolete -- use Loop for greater flexibility]
안쓰는 명령어. Loop을 쓰시오.

Return
Returns from a subroutine to which execution had previously jumped via function-call, Gosub, Hotkey activation, GroupActivate, or other means.
함수 종료하고 불렸던 곳으로 돌아감.

RightClick
[Obsolete -- use MouseClick for greater flexibility]
안씀.

RightClickDrag
[Obsolete -- use MouseClickDrag for greater flexibility]
안씀.

Run
Runs an external program.
외부 프로그램을 실행.

RunAs
Specifies a set of user credentials to use for all subsequent uses of Run and RunWait. Requires Windows 2000/XP or later.
프로그램 수행시 필요한 ID와 Password 등을 지정.

RunWait
Runs an external program and waits until it finishes.
외부 프로그램을 실행시키고 그게 끝날 때까지 기다림.

Send / SendRaw
Sends simulated keystrokes to the active window.
활성화된 윈도우에 키스트로크 보냄.

SendMessage
Sends a message to a window or control and waits for acknowledgement.
윈도우나 컨트롤에 메시지 보내고 애크를 기다림.
(애크: 뭘 보내고 나면 받는 쪽에서 다시 보내주는 “잘 받았어!” 하는 응답)

SetBatchLines
Determines how fast a script will run (affects CPU utilization).
스크립트 수행속도를 설정. (CPU 점유율에 영향.)

SetCapslockState
Sets the state of the Capslock key. Can also force the key to stay on or off.
캡스락 키 세팅.

SetControlDelay
Sets the delay that will occur after each control-modifying command.
각 컨트롤-변경 명령 후에 줄 딜레이 설정.

SetDefaultMouseSpeed
Sets the mouse speed that will be used if unspecified in MouseMove/Click/Drag.
MouseMove/Click/Drag에서 디폴트로 사용할 마우스 속도 지정.

SetFormat
Sets the format of integers and floating point numbers generated by math operations.
수학 연산 결과물의 포맷을 지정.

SetKeyDelay
Sets the delay that will occur after each keystroke sent by Send or ControlSend.
Send나 ControlSend로 키스트로크 보내고 난 후에 줄 딜레이 설정.

SetMouseDelay
Sets the delay that will occur after each mouse movement or click.
마우스 이동이나 클릭 후에 줄 딜레이 설정.

SetNumlockState
Sets the state of the Numlock key. Can also force the key to stay on or off.
넘락 키 세팅.

SetScrollLockState
Sets the state of the Scrolllock key. Can also force the key to stay on or off.
스크롤락 키 세팅.

SetStoreCapslockMode
Whether to restore the state of CapsLock after a Send.
Send 후에 캡스락 키 상태를 원복할 것인지 결정.

SetTimer
Causes a subroutine to be launched automatically and repeatedly at a specified time interval.
지정된 시간 간격으로 서브루틴을 자동으로 실행시킴.

SetTitleMatchMode
Sets the matching behavior of the WinTitle parameter in commands such as WinWait.
WinWait 같은 명령에서 윈도우 제목을 찾는 방식 설정.

SetWinDelay
Sets the delay that will occur after each windowing command, such as WinActivate.
윈도우 명령어를 날리고 나서 줄 딜레이 설정.

SetWorkingDir
Changes the script's current working directory.
스크립트의 작업 디렉토리 변경.

Shutdown
Shuts down, restarts, or logs off the system.
컴퓨터를 끄거나 재시작 하거나 로그오프 하기.

Sleep
Waits the specified amount of time before continuing.
잠시 쉬기.

Sort
Arranges a variable's contents in alphabetical, numerical, or random order (optionally removing duplicates).
변수들을 알파벳 순, 숫자 순, 임의 순으로 정렬.

SoundBeep
Emits a tone from the PC speaker.
스피커로 삑 소리.

SoundGet
Retrieves various settings from a sound device (master mute, master volume, etc.)
사운드 디바이스의 세팅 값 알아내기. (음소거, 볼륨 등.)

SoundGetWaveVolume
Retrieves the wave output volume from a sound device.
사운드 디바이스의 wave 출력 볼륨 알아내기.

SoundPlay
Plays a sound, video, or other supported file type.
사운드, 비디오 등 재생하기.

SoundSet
Changes various settings of a sound device (master mute, master volume, etc.)
사운드 디바이스 세팅 값 변경하기. (음소거, 볼륨 등.)

SoundSetWaveVolume
Changes the wave output volume for a sound device.
사운드 디바이스 wave 출력 볼륨 조절하기.

SplashImage
Creates or updates a window containing a JPG, GIF, or BMP image.
이미지 파일 있는 윈도우 만들거나 업데이트 하기.

SplashTextOn
Creates a customizable text popup window.
텍스트 팝업 윈도우 만들기.

SplashTextOff
Closes the above window.
위에서 만든 윈도우 닫기.

SplitPath
Separates a file name or URL into its name, directory, extension, and drive.
파일 이름이나 URL을 이름, 디렉토리, 확장자, 드라이브명으로 분리하기.

StatusBarGetText
Retrieves the text from a standard status bar control.
표준 상태바에서 텍스트 읽어오기.

StatusBarWait
Waits until a window's status bar contains the specified string.
윈도우 상태바가 어떤 문자열을 가질 때까지 기다리기.