Zoeken…


Opmerkingen

AutoIt is een lichtgewicht freeware BASIC-achtige scripttaal die is ontworpen voor het automatiseren van de Windows GUI en algemene scripting.

Het is vooral handig voor het genereren van toetsaanslagen en het lezen van informatie van native Windows-besturingselementen. Bibliotheekfuncties zijn inbegrepen voor de automatisering van Microsoft Office-toepassingen en webbrowsers.

Het kan worden gedownload van https://www.autoitscript.com/site/autoit/ , een site die ook een uitgebreide documentatie set bevat.

Installatie of instellingen

AutoIt is bedoeld voor gebruik op het Microsoft Windows-besturingssysteem. Het is compatibel met versies vanaf Windows XP.

Download het installatiehulpprogramma van https://www.autoitscript.com/site/autoit/downloads/

Bij installatie op een 64-bits versie van Windows wordt de gebruiker gevraagd om een 64- of 32-bits installatie te kiezen. De keuze is van invloed op de compilatiehulpprogramma's die naast de scriptinterpreter worden geïnstalleerd.

Het installatieprogramma wordt geïnstalleerd in de opgegeven map:

  • De scripttolk
  • Een scriptcompiler
  • Een scripteditor (SciTE)
  • Help-bestanden
  • Voorbeelden

Hallo Wereld

Een eenvoudig AutoIt-script met enkele basisfuncties van de taal.
Merk op dat puntkomma's opmerkingen introduceren
Bewaar dit als "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

Dit levert een eenvoudige uitvoer op: -
Hallo wereld output



Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow