Hi Leute habe das Problem das ,wenn ich eine Variable per Inputbox defeniere und dann die Variable mit dem send befehl ausgebe (in notepad rein),das dann dort 3 steht obwohl ich f eingebe!!
[autoit]
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("Form1", 405, 294, 302, 218)
$Input1 = GUICtrlCreateInput("Input1", 72, 64, 217, 21)
$Button1 = GUICtrlCreateButton("Button1", 144, 208, 105, 65, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
run("notepad")
sleep(1000)
send($Input1)
EndSwitch
WEnd