从变量运行多行脚本

时间:2016-11-16 15:33:03

标签: autoit

我的AutoIt脚本:

$command = InputBox("Enter your command", "Enter your command")
Execute($command)

这适用于MsgBox(0, "Test", "Test")等单行命令。但是多行代码(例如If -statements)会产生错误。

如果它是一个多行脚本,有没有办法从变量运行AutoIt源代码?

1 个答案:

答案 0 :(得分:2)

是的,将其写入临时脚本文件,然后执行该脚本。由于InputBox()不接受多行输入,我使用clipget()来从剪贴板中获取命令。

sc.wholeTextFiles