Jump to content

Reading Text


Recommended Posts

Here's an example without too much error checking...

Run("notepad.exe")
sleep(1000)
$string = ""
for $i = 1 to 10
    $string &= "Line " & $i & @crlf
next
ControlSetText("[CLASS:Notepad]", "", "Edit1",$string)
$string = ""

sleep(3000)

$lastline = ""

$string = ControlGetText("[CLASS:Notepad]", "", "Edit1")
$array = StringSplit($string,@lf)

if $array[0] > 1 Then
    $lastline = $array[$array[0]-1]
Else
    $lastline = $array[1]
Endif

MsgBox(0,"",$lastline)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...