1.what do you want to "change"?
2. what for an adress?
Example, how to use guictrlread and inputboxes:
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 349, 172, 185, 156)
$Input2=GUICtrlCreateInput("", 56, 56, 121, 21)
$Button1 = GUICtrlCreateButton("change", 56, 96, 129, 49)
$input1=GUICtrlCreateInput("", 56, 24, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
msgbox(0, "", "Your Text/Numbers in the Inputbox was: "&guictrlread($input1))
msgbox(0, "", "Your Text/Numbers in the Inputbox was: "&guictrlread($input2))
change()
EndSwitch
WEnd
func change() ;after this you can start "changing"
;winwaitactive("S4league") ????
;......what do you want to change?
EndFunc