Re: how do I search through text without finding text from previous search

2008-11-09 Thread John Mosby
GOT IT!! It seems all I need is the following code after my search line with selecting match So the new line of code is... set zFindResult to find searchStr options {search mode:grep, returning results:true, starting at top:false, showing results:false} searching in text 1 of text window 1

Re: how do I search through text without finding text from previous search

2008-11-09 Thread John Mosby
My problem seems to be that after I find the text using the line... set zFindResult to find searchStr options {search mode:grep, returning results:true, starting at top:false, showing results:false} searching in text 1 of text window 1 that the line below does not set the insertion point after

how do I search through text without finding text from previous search

2008-11-08 Thread John Mosby
I want to search a window of text, but I don't want to continue to find the same text that I previously found. How do I do that? I have tried to set the insertion point after the found text block, but I can't make that work. The script is posted below. Thanks for any help, I'm sure this isn't