我想从AutoIt脚本加载LGE Tool,然后转到“远程服务”选项卡。我正在使用此代码:
$program = "C:\Program Files (x86)\LGE Tool\LGETool.exe"
If ProcessExists($program) = True Then
MsgBox(0,"","works")
ElseIf ProcessExists($program) = False Then
Run($program)
EndIf
WinActivate($program)
WinWaitActive("LGE Tool version 1.99")
Send("{^TAB}")
该软件确实加载但没有任何作用。
答案 0 :(得分:1)
您的发送语法不正确......应该是:
Send("^{TAB}")
我假设Control + TAB
在该计划中有效;您提到的软件是专有的,需要特殊的驱动程序,没有先决条件的人无法真正测试解决方案,因此您必须成为测试点。
希望这有效!
亚历