Conformist024
Новичок
- Сообщения
- 2
- Репутация
- 0
Всем привет, делаю так, но интерес представляет предпоследняя строка.
$file = FileOpen("C:\...\1.txt", 0)
; Check if file opened for reading OK
If $file = -1 Then
Exit
EndIf
; Read in lines of text until the EOF is reached
While 1
$line = FileReadLine($file)
If @error = -1 Then ExitLoop
Wend
FileClose($file)
AutoItSetOption("MouseCoordMode", 0)
WinActivate("...")
MouseClick("primary", 490, 460, 1, 0)
WinActivate("...")
MouseClick("primary", 188, 99, 1, 0)
Send("$line{Enter}")
MouseClick("primary", 286, 205, 1, 0)
В нужное мне поле записывается $line. Как сделать так что бы записалось именно значение переменной?
$file = FileOpen("C:\...\1.txt", 0)
; Check if file opened for reading OK
If $file = -1 Then
Exit
EndIf
; Read in lines of text until the EOF is reached
While 1
$line = FileReadLine($file)
If @error = -1 Then ExitLoop
Wend
FileClose($file)
AutoItSetOption("MouseCoordMode", 0)
WinActivate("...")
MouseClick("primary", 490, 460, 1, 0)
WinActivate("...")
MouseClick("primary", 188, 99, 1, 0)
Send("$line{Enter}")
MouseClick("primary", 286, 205, 1, 0)
В нужное мне поле записывается $line. Как сделать так что бы записалось именно значение переменной?