2

ここに私のコード:

#Include <FF.au3>

_FFStart()

If _FFIsConnected() Then
    $sStringToSearch = "www.google.com"
    sleep (2000)
    If _FFSearch($sStringToSearch) Then
        ; add a new tab with an URL
        _FFWindowOpen("http://ff-au3-example.thorsten-willert.de/")
        Sleep(1000)
        _FFWindowOpen("www.msn.com")
        Sleep(1000)
        _FFWindowOpen("www.yahoo.com")
        Sleep(1000)
        _FFWindowOpen("google.com")
    EndIf
Else
EndIf

スクリプトによると、Google にアクセスすると、最初のリンクが開き、続いて他のリンクが開きます。開いたウィンドウを最小化するにはどうすればよいですか。

また、これに対する解決策を ErrorstdOut に取得し続けますか?

4

1 に答える 1

2

WinSetState ( "title", "text", flag ) を試してください API のリンクは次のとおりです: http://www.autoitscript.com/autoit3/docs/functions/WinSetState.htm

サンプルは次のとおりです: WinSetState("Calculator", "", @SW_MINIMIZE )

于 2013-04-17T04:31:46.090 に答える