Scroling a field while user types?
Posted: Sun Nov 16, 2014 6:45 am
Hey,
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:
Why is it that this causes the whole program to be useless until it inevitably throws an error (due to scrolling past the actual limit of the scrollable area)
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?
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?