Hi.
In allmost all commands there has to be a result variable, but I don't get it.. For example.:
I want to use the command 'GetTextInRect' to read text in one place and then copying it to another place.
GetTextInRect>1300,37,1320,53, ??and then what??
________
Dodge specifications
Result Variable
Moderators: JRL, Dorian (MJT support)
Result Variable
Last edited by Machariel on Tue Feb 01, 2011 11:33 pm, edited 1 time in total.
Replace " ??and then what??" with the text string that you would like as a variable. For example:GetTextInRect>1300,37,1320,53, ??and then what??
Code: Select all
//Get the text at specified location and assign it to variable named "MyText"
GetTextInRect>1300,37,1320,53,MyText
//View "MyText" in a modal message box
MessageModal>%MyText%
Code: Select all
GetTextInRect>1300,37,1320,53,MyText
SetFocus>NotePad*
Send>%MyText%