I was writing this simple game and ran into a problem that I understand, but don't know how to solve in LiveCode.
Heres the script: https://dl.dropboxusercontent.com/u/122 ... e.livecode
The part I'd like to highlight is this:
Code: Select all
on scrollMe
   if stillScrolling = 1 then
      set the scroll of me to the scroll of me + 1
      wait 1 millisecond
      scrollMe
   end if
end scrollMe
I'm not asking about error handling. I'm saying Id like people to be able to type into the bottom field while the top one is being automatically scrolled. How can this be done?

