Changes the operation of various AutoIt functions/parameters. This function can be used interchangeably with AutoItSetOption.
AutoItSetOption
The option to change. See AutoItOption for details.
AutoItOption
The value to assign to the option. It varies depending on the option being set.
A promise that resolves to the previous setting of the option.
import { Opt, AutoItOption } from '@ahmic/autoit-js';await Opt(AutoItOption.MouseCoordMode, 1); Copy
import { Opt, AutoItOption } from '@ahmic/autoit-js';await Opt(AutoItOption.MouseCoordMode, 1);
https://www.autoitscript.com/autoit3/docs/functions/Opt.htm
Changes the operation of various AutoIt functions/parameters. This function can be used interchangeably with
AutoItSetOption
.