I like find behaviour: each time you call it, it continues from the last founded word.
Is there a way to go back with find ? I mean to go back to the previous founded text or find backward.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseUp
find "XXX"
set the foundHistory of this card to the foundHistory of this card & return & the foundChunk
end mouseUp
Code: Select all
on mouseUp
set the foundHistory of this cd to line 1 to -2 of the foundHistory of this cd
get the last line of the foundHistory of this cd
set the textstyle of it to "box"
end mouseup
Code: Select all
on mouseUp
answer the foundHistory of this cd
end mouseUp
Code: Select all
on mouseUp
set the foundHistory of this card to ""
set the textStyle of word 1 to 1000 of fld 1 to "plain"
end mouseUp