Not sure if this is what you need or not, if you can get the co-ordinates of the window to serach and do the following. the $result will not be = to 0 if the quoted text is found in the clipboard. I found it somewhat tricky to figure out what the window co-ordinates are to read but once I did I can read almost any non window (text windows, terminal emulation products and such) window. MouseClickDrag("Left",10,90,770,600,5) Send("{LCTRL V}") $READ = ClipGet() $RESULT = StringInStr($READ , "whatever text you expect in the window") Sleep(1000) If $RESULT <> 0 Then do whatever means text was found in string endif Hope this helps