Scuze pentru greselile de ortografie...
Am facut un mini-script pentru a prinde ideea, adik pentru a sti ce vreau sa fac

Codul este:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#NoTrayIcon
$Form1 = GUICreate("httpsetproxy", 254, 170, 193, 125)
$Label1 = GUICtrlCreateLabel("Site rules...", 40, 0, 136, 33)
GUICtrlSetFont(-1, 18, 800, 0, "MS Sans Serif")
$Input1 = GUICtrlCreateInput("www.google.ro", 40, 40, 145, 21)
$Label2 = GUICtrlCreateLabel("Use proxy:proxy:port", 0, 64, 243, 33)
GUICtrlSetFont(-1, 18, 800, 0, "MS Sans Serif")
$Input2 = GUICtrlCreateInput("62.217.240.146:80", 40, 104, 145, 21)
$Button1 = GUICtrlCreateButton("Go ", 64, 136, 89, 25, 0)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd