Hi,
I am reading the displayed text of a dialog using:
Set TargetsArea to (869,276,1124,759)
Put ColorAtLocation(969,288) into var
Put ReadText(TargetsArea, Contrast:On,ContrastColor: var) split by return into ReadTargets
After that due to the timing issue- the dialog closes after 30 seconds inactivity- finding the location of the individual texts by looking for each one fails:
Repeat with each item i of ReadTargets
Click( Text:i, searchRectangle: TargetsArea, Contrast:On, ContrastColor: var, contrastTolerance:90, DPI:400)
-- do some validation
end repeat
Is there a way to capture the location of each readtext while I read the text for the first time?
Thank you in advance
Jahan