Where $application_name is your application name. First one is to hide, 2nd one is to show.
I am not sure if you can fill out forms when it's hidden thou but i guess you could verify it yourself. Probably you would have to use ControlSend to directly send text to control.
发布评论
评论(2)
您可以隐藏像 MadBoy 显示的窗口,然后使用 AutoIt 的“ControlCommand”功能填充/调整控件,如下所示:
要检测控件具有哪个类名,您必须使用 AutoIt 附带的 AutoIt 窗口信息工具,并且默认安装。
例如,要填写文本框,您可以使用:
这甚至适用于隐藏窗口。
You can hide windows like MadBoy showed and then fill/adjust controls using the "ControlCommand"-Function of AutoIt like this:
To detect which Classname a control has you must use the AutoIt Window Info tool which comes with AutoIt and is installed by default.
To fill out TextBoxes for example you would use:
This even works with hidden windows.
要隐藏应用程序,您需要使用 (AutoIt v3):
其中 $application_name 是您的应用程序名称。第一个是隐藏,第二个是显示。
我不确定您是否可以在隐藏时填写表格,但我想您可以自己验证。可能您必须使用
ControlSend
直接向控件发送文本。To hide application you need to use (AutoIt v3):
Where $application_name is your application name. First one is to hide, 2nd one is to show.
I am not sure if you can fill out forms when it's hidden thou but i guess you could verify it yourself. Probably you would have to use
ControlSend
to directly send text to control.