0 purchases
autoit script compiler
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
copied to clipboard
Usage #
** create a file named "script.au3", content is as follows: **
MsgBox(64, "guide", "Hello, world!")
copied to clipboard
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
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.