AutoIT {REQ}Need change proxy item

Stato
Discussione chiusa ad ulteriori risposte.

AhrimanSefid

Utente Bronze
26 Dicembre 2015
2
2
0
29
Ultima modifica da un moderatore:
Hi All.
Me Need change proxy item in list proxy (load file proxy.txt) and click in page and clear cookies.
thank you

Codice:
#NoTrayIcon
#include <GUIConstants.au3>
#Include <IE.au3>
#include <GUIConstantsEx.au3>
GUICreate("Web Browser By EMP£!!",800,600)
GUISetBkColor(0x808080)
GUISetState(@SW_SHOW)
$Edit=GUICtrlCreateInput("http://www.whatismyip.com/",20,20,500,20)
$Vai=GUICtrlCreateButton("SURF!!!",600,10,150,50)
$oIE = ObjCreate("Shell.Explorer.2")
GUICtrlCreateObj($oIE, 10, 90,780, 500)
$ret = HttpSetProxy(2,"61.163.78.51:3128")
If $ret == 0 Then
  MsgBox(0, "Proxy", "Proxy Error")
  Exit
EndIf
While 1
$msg=GUIGetMsg()
  Switch $msg
  Case $Vai
$Link=GUICtrlRead($Edit)
_IENavigate($oIE,($Link))
  GUICtrlSetData($Edit,$Link)
  Case $GUI_EVENT_CLOSE
  Exit
  EndSwitch
WEnd
 
Stato
Discussione chiusa ad ulteriori risposte.