I'm Vietnames! Please help me

  • Wie kann ich mit Proxy-und Socks?
    How do I use Proxy and Socks with FF.au3 ?

  • Zitat

    How do I use Proxy and Socks with FF.au3 ?

    If u will use it for establishing a server then better try out some of the AutoIT Main Funktions (look at the help~ )
    The FF.au3's main usage is for working with the FF Funktions themselve i think.

    And better try out the english Forum,
    they will help u ;)

  • Ý tôi là làm sao dùng socks và proxy cho FF mà không cần phải mở cửa sổ FF.
    Mà sửa lại dòng network.proxy.socks và network.proxy.http không?

  • Wie kann ich mit Proxy-und Socks?
    How do I use Proxy and Socks with FF.au3 ?

    This is for FireFox only:
    Normally you can use it, if you just change your proxy and socks settings in the FireFox preferences.
    If you would change it via the FF.au3 you can use the function _FFPrefsSet.

  • @Alle Mitbeantworter:
    Mir ist es eigentlich egal ob ich die Frage hier oder im englischen Forum beantworte :D

    Für Leute die dort nicht mitlesen, hier nochmal wie man die "Einstellungen" ändert, was anderes wollte der OP ja nicht gar nicht wissen:

    Spoiler anzeigen
    [autoit]

    #region Includes
    #include <FF.au3>
    #endregion Includes

    [/autoit] [autoit][/autoit] [autoit]

    _FFConnect()

    [/autoit] [autoit][/autoit] [autoit]

    If _FFIsConnected() Then
    ; Config entries:
    ; http://kb.mozillazine.org/About:config_entries

    [/autoit] [autoit][/autoit] [autoit]

    _FFPrefSet("network.proxy.type",1) ; 1 = Manual proxy configuration

    [/autoit] [autoit][/autoit] [autoit]

    ; http proxy
    _FFPrefSet("network.proxy.http", "192.168.0.199") ; http proxy
    _FFPrefSet("network.proxy.http_port", 8080) ; http proxy port

    [/autoit] [autoit][/autoit] [autoit]

    ; Socks configuration
    _FFPrefSet("network.proxy.socks" ,"192.168.0.198") ; socks
    _FFPrefSet("network.proxy.socks_port", 80) ; socks port
    _FFPrefSet("network.proxy.socks_version", 4) ; socks version

    [/autoit] [autoit][/autoit] [autoit]

    ; reset all to default values:
    #cs
    _FFPrefReset("network.proxy.type")
    _FFPrefReset("network.proxy.http")
    _FFPrefReset("network.proxy.http_port")
    _FFPrefReset("network.proxy.socks")
    _FFPrefReset("network.proxy.socks_port")
    _FFPrefReset("network.proxy.socks_version")
    #ce

    [/autoit] [autoit][/autoit] [autoit]

    EndIf

    [/autoit]