如何按" ALT + F4"使用AutoIt

时间:2015-06-04 11:27:20

标签: autoit notepad alt-key

我是AutoIt的新手。我在AutoIt中使用以下代码运行记事本:

Run("notepad.exe")

现在我想使用" ALT + F4"退出应用程序。如何按" ALT + F4"使用AutoIt工具?

2 个答案:

答案 0 :(得分:3)

您需要查看AutoIt的文档 - 这非常好。

您正在寻找的是:https://www.autoitscript.com/autoit3/docs/functions/Send.htm

请注意,您要确保窗口处于活动状态,或者您要定位窗口。

有了这个,我建议使用它:https://www.autoitscript.com/autoit3/docs/functions/ControlSend.htm

  

ControlSend()的工作方式与Send()类似,但它可以发送密钥   直接敲击窗口/控件,而不仅仅是活动   窗口。

答案 1 :(得分:2)

以下代码用于按" ALT + F4"应该在AutoIt中工作:

Send("{ALT down}{F4 down}{F4 up}{ALT up}")

OR,

Send("!{F4}")

OR,

Send("!{F4}", 0)