primero ke nada pongo el code de lo ke tengo echo...
Código: Seleccionar todo
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
GUICreate("Remplazo", 300, 166, 192, 124)
$sa = GUICtrlCreateInput("hola como estan todos", 59, 40, 185, 21)
$sa1 = GUICtrlCreateInput("", 59, 70, 185, 21)
$boton = GUICtrlCreateButton("Cambiar", 101, 104, 97, 33, $WS_GROUP)
GUICtrlCreateLabel("Cambia textos", 96, 8, 106, 17)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
Switch $msg
Case $GUI_EVENT_CLOSE
Exit
case $boton
$text = StringReplace("hola a todos","a","4")
MsgBox(0, "", $text)
EndSwitch
WEnd
mi problemas es el siguiente , kiero ke el texto lo lea del primer imput y ke lo devuelva en el segundo imput -.-
estuve tratando de hacerlo asi " $cam = ControlSend("Remplazo", "$text","$sa1",1) " y ponerle un " send($cam) "
pero no logro hacerlo, me podrian dar una mano ?? graciass !!