autoit_script_compiler 1.0.0 copy "autoit_script_compiler: ^1.0.0" to clipboard
autoit_script_compiler: ^1.0.0 copied to clipboard

A Dart librariy for run and compile autoit script.

autoit-v3 script compiler, only supports Windows.

AutoIt v3 is a freeware BASIC-like scripting language designed for automating the Windows GUI and general scripting. It uses a combination of simulated keystrokes, mouse movement and window/control manipulation in order to automate tasks in a way not possible or reliable with other languages.

Features #

  • run autoit-v3 script;

  • compile autoit-v3 script to an executable file;

Installation #

dart pub add autoit_script_compiler

Usage #

** create a file named "script.au3", content is as follows: **

MsgBox(64, "guide", "Hello, world!")
import 'package:autoit_script_compiler/autoit_script_compiler.dart' as autoit;

void main() async {
  await autoit.run("./example/script.au3"); // run autoit script
  // or
  await autoit.compile("./example/script.au3", target: "./script.exe"); // compile autoit script
}

0
likes
120
pub points
0%
popularity

Publisher

unverified uploader

A Dart librariy for run and compile autoit script.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

path

More

Packages that depend on autoit_script_compiler