수색…


비고

AutoIt은 Windows GUI 및 일반 스크립팅 자동화를 위해 설계된 경량 프리웨어 BASIC 계열의 스크립팅 언어입니다.

특히 키 입력을 생성하고 기본 Windows 컨트롤에서 정보를 읽는 데 유용합니다. 라이브러리 기능은 Microsoft Office 응용 프로그램 및 웹 브라우저의 자동화에 포함됩니다.

포괄적 인 문서 세트가 포함 된 사이트 인 https://www.autoitscript.com/site/autoit/ 에서 다운로드 할 수 있습니다.

설치 또는 설정

AutoIt은 Microsoft Windows 운영 체제에서 사용하기위한 것입니다. Windows XP 이후 버전과 호환됩니다.

https://www.autoitscript.com/site/autoit/downloads/ 에서 설치 유틸리티를 다운로드 하십시오.

64 비트 버전의 Windows에 설치하는 경우 사용자에게 64 비트 또는 32 비트 설치를 선택하라는 메시지가 표시됩니다. 선택 사항은 스크립트 인터프리터와 함께 설치된 컴파일 유틸리티에 영향을줍니다.

설치 유틸리티가 지정된 디렉토리에 설치됩니다.

  • 스크립트 인터프리터
  • 스크립트 컴파일러
  • 스크립트 편집기 (SciTE)
  • 도움말 파일
  • 예제들

안녕하세요 세계

언어의 기본 기능 중 일부를 보여주는 간단한 AutoIt 스크립트.
세미콜론은 주석을 삽입합니다.
이것을 "HelloWorld.au3"로 저장하십시오.

; Include constants.  In this case, for the MsgBox() function
#include <MsgBoxConstants.au3>

; Define and initialize the title of a dialogue box
; All AutoIt variables are loosely typed
; Local specifies the scope
Local $title
$title = "Example Window"

; Alternative method of implicit definition
; This time also indicating constant
Const $text = "Hello World"

; Third example definition
; Strings and integers defined in the same manner
$timeout = 30

; Create dialogue box using #included constants
MsgBox($MB_ICONINFORMATION, $title, $text, $timeout)

; Program end - Use of Exit is not mandatory
Exit

이것은 간단한 출력을 생성합니다 :
Hello World 출력



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow