This ancient script has worked fine for many years, up through the last version of LiveCode 7. It's just a quick and dirty way of searching for text in a stack.
It stopped working in version 8. I assume something has changed. I tried looking through "what's new" in version 8, came up empty.
I don't need a lot of handholding, just a clue or a hint, or possibly a kick in the butt.
Thanks in advance.
Code: Select all
on mouseUp
go to cd "Single Line" of stack "Message Box"
put "find " & quote & quote into fld "Message Field" of cd "Single Line" of stack "Message Box"
put " select char 7 to 6 of fld " & quote & "Message Field" & quote & " of cd " & quote & "Single Line" & quote & /
" of stack " & quote & "Message Box" & quote into tCmd
send tCmd to me in 30 ticks
end mouseUp